11 lines
186 B
SQL
11 lines
186 B
SQL
create table social_status
|
|
(
|
|
id INTEGER
|
|
primary key,
|
|
name TEXT not null
|
|
unique,
|
|
ap_kosten INTEGER not null,
|
|
beschreibung TEXT
|
|
);
|
|
|