AppFlowy/frontend/rust-lib/flowy-sqlite/migrations/2023-08-02-083250_user_migration/up.sql

6 lines
206 B
MySQL
Raw Normal View History

-- 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
);