10 lines
101 B
SQL
10 lines
101 B
SQL
-- [TIMES]
|
|
|
|
-- TODO: constraint
|
|
|
|
create table times
|
|
(
|
|
key text not null
|
|
, value text not null
|
|
);
|