10 lines
156 B
SQL
10 lines
156 B
SQL
create table availability_level
|
|
(
|
|
id INTEGER
|
|
primary key,
|
|
stufe INTEGER not null
|
|
unique,
|
|
beschreibung TEXT
|
|
);
|
|
|