mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
8 lines
167 B
SQL
8 lines
167 B
SQL
create table clock
|
|
(
|
|
last_save_time int,
|
|
last_save_timestamp date, -- NO_BIND
|
|
constraint pk_clock primary key (last_save_time)
|
|
);
|
|
grant select on clock to public;
|