8 lines
91 B
SQL
8 lines
91 B
SQL
-- [CONTROLS]
|
|
|
|
create table controls
|
|
(
|
|
_order serial primary key
|
|
, line text not null
|
|
);
|