mirror of
https://github.com/lightninglabs/loop
synced 2024-11-09 19:10:47 +00:00
10 lines
266 B
MySQL
10 lines
266 B
MySQL
|
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)
|
||
|
);
|