Files
WinStudentGoalTracker/db/Objects/tables/role.sql
T
2026-02-18 06:15:53 -08:00

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;