mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:57:48 +08:00
7 lines
149 B
MySQL
7 lines
149 B
MySQL
|
CREATE TABLE schema_migrations
|
||
|
(
|
||
|
path TEXT NOT NULL PRIMARY KEY,
|
||
|
created_at DATETIME NOT NULL,
|
||
|
sql_hash TEXT NOT NULL
|
||
|
);
|