| 1234567891011121314151617181920212223242526 |
- package migrations
- var migrationList []*migration
- func init() {
- new(migrationBuilder).
- desc("Create account table").
- sqlite(`
- CREATE TABLE account (
- id INTEGER PRIMARY KEY
- )
- `).
- verifyTable("account")
- }
- type SchemaVersion struct {
- Version int
- }
- type SchemaLog struct {
- Id int64
- Version int64
- Desc string
- Info string
- Error bool
- }
|