8 lines
85 B
SQL
8 lines
85 B
SQL
-- [RULES]
|
|
|
|
create table rules
|
|
(
|
|
_order serial primary key
|
|
, line text not null
|
|
);
|