mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-07 00:53:02 +00:00
6 lines
206 B
SQL
6 lines
206 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE user_data_migration_records (
|
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
migration_name TEXT NOT NULL,
|
|
executed_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
); |