lightning-terminal/db/schemas.go
Elle Mouton d3db19e2cc
db: SQL boilerplate code
This commit adds the boilerplate code we will need in order to start
using SQL backed stores (namely sqlite and postgres) for our DB backend.

NOTE that this has been copied from the taproot-assets repo.
2025-01-29 16:37:20 +02:00

9 lines
103 B
Go

package db
import (
"embed"
_ "embed"
)
//go:embed sqlc/migrations/*.*.sql
var sqlSchemas embed.FS