8 lines
85 B
SQL
8 lines
85 B
SQL
create table sa_type
|
|
(
|
|
code TEXT
|
|
primary key,
|
|
name TEXT not null
|
|
);
|
|
|