rocket_page/migrations/2020-07-19-113511_add_klassen/up.sql

12 lines
186 B
MySQL
Raw Normal View History

2020-07-23 11:45:59 +02:00
-- Your SQL goes here
2020-07-24 21:43:05 +02:00
CREATE TABLE klassen
(
id Integer PRIMARY KEY NOT NULL,
stufe Integer NOT NULL,
gruppe Text NOT NULL,
titel Text,
ordinal Integer NOT NULL
2020-07-23 11:45:59 +02:00
);
2020-07-24 21:43:05 +02:00