00__migration_history.sql 168 B

12345
  1. -- migration_history
  2. CREATE TABLE IF NOT EXISTS migration_history (
  3. version TEXT NOT NULL PRIMARY KEY,
  4. created_ts BIGINT NOT NULL DEFAULT (strftime('%s', 'now'))
  5. );