9 lines
192 B
MySQL
9 lines
192 B
MySQL
|
-- Your SQL goes here
|
||
|
create table timetable (
|
||
|
id serial primary key,
|
||
|
date varchar(255) not null,
|
||
|
updated varchar(255) not null,
|
||
|
class varchar(255) not null,
|
||
|
timetable_data jsonb
|
||
|
);
|