/
wax_boy
/
semaphore_custom
Обзор
Документация
Войти
/
wax_boy
/
semaphore_custom
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
db/sql/migrations/v2.8.8.sql
9 строк
346 B
Denis Gukov
feat(be): add view mock
26 окт 2021, 21:19
26 окт 2021, 21:19
3b2f62f
Код
Авторство
О чём код?
create table `project__view` ( `id` integer primary key autoincrement, `title` varchar(100) not null, `project_id` int not null, `position` int not null, foreign key (`project_id`) references project(`id`) on delete cascade ); alter table `project__template` add view_id int references `project__view`(id) on delete set null;