mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
9 lines
266 B
SQL
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)
|
|
);
|