mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 02:57:36 +00:00
8 lines
244 B
SQL
8 lines
244 B
SQL
CREATE TABLE `role` (
|
|
`id_role` int NOT NULL,
|
|
`name` varchar(100) DEFAULT NULL,
|
|
`description` text,
|
|
`created_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`id_role`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|