4 lines
86 B
MySQL
4 lines
86 B
MySQL
|
DROP TABLE IF EXISTS [sync];
|
||
|
CREATE TABLE [sync] (
|
||
|
[last_update] datetime not null
|
||
|
);
|