himbot/migrations/000002_create_schema_migrations.up.sql
2024-11-04 01:23:57 -06:00

4 lines
133 B
SQL

CREATE TABLE IF NOT EXISTS schema_migrations (
version INTEGER PRIMARY KEY,
applied_at DATETIME DEFAULT CURRENT_TIMESTAMP
);