9 lines
114 B
SQL
9 lines
114 B
SQL
-- [CONTROLS]
|
|
|
|
create table controls
|
|
(
|
|
control text primary key
|
|
);
|
|
|
|
insert into controls (control) values ('');
|