sqlite-schema-diff
A schema-first approach to SQLite migrations. Define your schema in .sql files, and let the tool figure out what changed.
Why?
Traditional migrations are error-prone and hard to maintain. Instead:
- Define your desired schema in SQL files
- Diff against your database to see what changed
- Apply changes automatically
No more numbered migration files. No more merge conflicts. Just SQL.
[!WARNING]
This tool is under active development. While it has been tested, not every edge case is covered. Always back up your database before applying changes. You are responsible for your data.
Installation
Download the latest binary from Releases
Or compile from source:
go install github.com/mizuchilabs/sqlite-schema-diff@latest
Quick Start
# Define your schema
cat > schema/users.sql << 'EOF'
CREATE TABLE users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
email TEXT NOT NULL UNIQUE,
created_at TEXT DEFAULT CURRENT_TIMESTAMP
);
CREATE INDEX idx_users_email ON users(email);
EOF
# Preview changes
sqlite-schema-diff diff --database app.db --schema ./schema
# Apply changes
sqlite-schema-diff apply --database app.db --schema ./schema
CLI Reference
diff — Preview changes
sqlite-schema-diff diff --database app.db --schema ./schema
sqlite-schema-diff diff --database app.db --schema ./schema --sql # Output raw SQL
apply — Apply changes
sqlite-schema-diff apply --database app.db --schema ./schema
| Flag |
Description |
--dry-run |
Show what would happen without applying |
--force |
Skip confirmation for destructive changes |
--skip-destructive |
Skip DROP operations |
--backup=false |
Disable automatic backup |
dump — Export existing schema
sqlite-schema-diff dump --database app.db --output ./schema
Library Usage
import (
"context"
"database/sql"
"fmt"
"log"
"github.com/mizuchilabs/sqlite-schema-diff/pkg/diff"
_ "modernc.org/sqlite"
)
func main() {
ctx := context.Background()
// Open your database connection
db, err := sql.Open("sqlite", "app.db")
if err != nil {
log.Fatal(err)
}
defer db.Close()
// Compare and get changes
changes, err := diff.Compare(ctx, db, "./schema")
if err != nil {
log.Fatal(err)
}
// Check what's changing
for _, c := range changes {
fmt.Printf("%s: %s (destructive: %v)\n", c.Type, c.Description, c.Destructive)
}
// Generate SQL without applying
sql := diff.GenerateSQL(changes)
_ = sql
// Apply changes
err = diff.Apply(ctx, db, "./schema", diff.ApplyOptions{
BackupPath: "app.db.backup", // empty string = no backup
SkipDestructive: false,
})
}
Available Functions
| Function |
Description |
Compare(ctx, db, schemaDir) |
Diff database against SQL files |
CompareDatabases(ctx, fromDB, toDB) |
Diff two databases |
GenerateSQL(changes) |
Generate migration SQL |
HasDestructive(changes) |
Check for destructive changes |
Apply(ctx, db, schemaDir, opts) |
Apply changes to database |
Parser Functions
| Function |
Description |
parser.FromDB(ctx, db) |
Extract schema from open database |
parser.FromSQL(ctx, sql) |
Parse schema from SQL string |
parser.ReadFiles(ctx, dir) |
Load schema from directory of .sql files |
parser.SetBaseFS(fsys) |
Read schema files from an embed.FS |
How apply works
To keep your data safe, apply follows a fixed sequence:
- Backup (unless
--backup=false): creates app.db.backup via VACUUM INTO before touching anything.
- Single transaction: all statements run on one connection inside one transaction. The transaction is started with
BEGIN IMMEDIATE, so a concurrent writer fails fast instead of deadlocking, and the connection waits up to 5 seconds for other writers (busy timeout). An interruption rolls everything back, including on Ctrl-C.
- Foreign keys disabled for the duration of the migration and restored afterwards (only if they were enabled before).
- Foreign key check before commit: if the migrated schema would violate a foreign key, the transaction is rolled back with an error instead of committing broken data.
[!NOTE]
PRAGMA foreign_keys is a per-connection setting. The tool disables it only on its own migration connection and restores it afterwards. If you rely on foreign key enforcement, enable it through the connection string (file:app.db?_pragma=foreign_keys(1)) so every connection, including the tool's, starts with it enabled.
Supported Objects
- Tables (with columns, constraints, foreign keys)
- Indexes
- Views
- Triggers
[!WARNING]
Virtual tables (CREATE VIRTUAL TABLE, such as FTS5) are created and diffed, but SQLite does not support ALTER TABLE on them. Any detected change to a virtual table fails at apply time; drop and recreate virtual tables manually instead.
Destructive Changes
Operations that may lose data are flagged as destructive:
| Operation |
Risk |
DROP TABLE |
Deletes table and all data |
RECREATE TABLE |
Required when a table cannot be altered |
By default, the CLI:
- Creates a backup before applying (
app.db.backup)
- Prompts for confirmation on destructive changes
Use --skip-destructive to safely apply only additive changes.
Schema Organization
Organize your .sql files however you like:
schema/
├── tables/
│ ├── users.sql
│ └── posts.sql
├── indexes.sql
└── triggers.sql
All files are merged. Each object name must be unique across all files.
FAQ
Q: What happens when I change a nullable column to NOT NULL?
A: Existing NULL values are replaced with a type-appropriate empty value during table recreation (for example, empty string for TEXT, 0 for INTEGER).
Q: Why do quoted table names “stick”?
A: The diff ignores quote style, so quoting differences never trigger changes. However, SQLite preserves the quoting of the stored schema, so the text you see in sqlite_master stays as it was written.
Q: Why does apply recreate a table instead of just adding a column?
A: SQLite only permits a restricted form of ALTER TABLE ADD COLUMN: no UNIQUE or PRIMARY KEY on the new column, no non-constant defaults such as CURRENT_TIMESTAMP on a non-empty table, no generated columns, and no foreign keys on the new column. Applying such a change with ADD COLUMN would silently drop those constraints, so the tool recreates the table and copies the data instead. The tool verifies every additive change by replaying it against a scratch copy of the table, so constraint changes that PRAGMAs cannot see (such as a new CHECK constraint) also trigger a recreation. The result always matches your schema files.
Q: Is apply safe to run more than once?
A: Yes. Once the database matches your schema files, apply reports "No schema changes detected" and does nothing. A single apply is enough to converge - you should never need a second one.
Examples
See examples/ directory for working examples.
License
Apache License 2.0 - see LICENSE for details.