serverctl/migrations/003_add_projects.sql

15 lines
337 B
MySQL
Raw Normal View History

2022-02-14 01:25:36 +01:00
-- Write your migrate up statements here
create table sctl_project
(
id int GENERATED BY DEFAULT AS IDENTITY primary key,
data jsonb NOT NULL
);
---- create above / drop below ----
drop table sctl_project;
-- Write your migrate down statements here. If this migration is irreversible
-- Then delete the separator line above.