9 lines
192 B
SQL
9 lines
192 B
SQL
-- 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
|
|
);
|