10 lines
111 B
SQL
10 lines
111 B
SQL
create table attribute
|
|
(
|
|
id INTEGER
|
|
primary key,
|
|
code TEXT
|
|
unique,
|
|
name TEXT
|
|
);
|
|
|