mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-03 05:27:22 +00:00
6 lines
No EOL
206 B
SQL
6 lines
No EOL
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
|
|
); |