loop/loopdb/sqlc/migrations/000008_migration_tracker.up.sql
2024-06-03 14:54:18 +02:00

9 lines
266 B
SQL

CREATE TABLE migration_tracker (
-- migration_id is the id of the migration.
migration_id TEXT NOT NULL,
-- migration_ts is the timestamp at which the migration was run.
migration_ts TIMESTAMP,
PRIMARY KEY (migration_id)
);