1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-23 21:34:47 +02:00
Files
go_basics/part_8/8.2/golang/todo_gorm/todo.db

2 lines
16 KiB
Plaintext
Raw Normal View History

2025-03-25 21:11:56 +03:00
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`))/Cindexsqlite_autoindex_projects_1projects
��� One Year Go