This repository has been archived on 2023-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
meincantor-api/migrations/2021-06-25-153658_create_class_timetable/up.sql
2021-07-01 17:57:15 +02:00

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
);