mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
2 lines
16 KiB
Plaintext
2 lines
16 KiB
Plaintext
|
|
SQLite format 3 @ .[5
�
� 6�
� �Q''�atableproject_tasksproject_tasksCREATE TABLE `project_tasks` (`id` integer NOT NULL,`name` text NOT NULL,`description` text NOT NULL,`priority` integer NOT NULL,`is_done` numeric NOT NULL,`project_id` integer NOT NULL,PRIMARY KEY (`id`),CONSTRAINT `fk_project_tasks_project` FOREIGN KEY (`project_id`) REFERENCES `projects`(`id`))��otableprojectsprojectsCREATE TABLE `projects` (`id` integer NOT NULL,`name` text NOT NULL UNIQUE,`description` text,PRIMARY KEY (`id`))/C indexsqlite_autoindex_projects_1projects
|
||
|
|
|