5 lines
96 B
MySQL
5 lines
96 B
MySQL
|
|
CREATE TABLE `data_migration` (
|
||
|
|
`name` text PRIMARY KEY,
|
||
|
|
`time_completed` integer NOT NULL
|
||
|
|
);
|