12 lines
186 B
SQL
12 lines
186 B
SQL
-- Your SQL goes here
|
|
|
|
CREATE TABLE klassen
|
|
(
|
|
id Integer PRIMARY KEY NOT NULL,
|
|
stufe Integer NOT NULL,
|
|
gruppe Text NOT NULL,
|
|
titel Text,
|
|
ordinal Integer NOT NULL
|
|
);
|
|
|