9 lines
103 B
MySQL
9 lines
103 B
MySQL
|
|
create table merkmal
|
||
|
|
(
|
||
|
|
id INTEGER
|
||
|
|
primary key,
|
||
|
|
name TEXT not null
|
||
|
|
unique
|
||
|
|
);
|
||
|
|
|