Files
lightwalletd/storage/sqlite3.go
2018-11-19 18:20:59 -05:00

18 lines
313 B
Go

package storage
import "database/sql"
func createBlockTable(conn *sql.DB) error {
tableCreation := `
CREATE TABLE IF NOT EXISTS blocks (
height INTEGER,
hash TEXT,
has_sapling_tx BOOL,
compact_encoding BLOB,
PRIMARY KEY (height, hash)
);
`
_, err := conn.Exec(tableCreation)
return err
}