10 lines
103 B
SQL
10 lines
103 B
SQL
-- [REPORT]
|
|
|
|
-- TODO: constraint
|
|
|
|
create table report
|
|
(
|
|
key text not null
|
|
, value text not null
|
|
);
|