36735-vm/db/migrations/008_add_role_to_team_members.sql
Flatlogic Bot d076708932 feat: Implement new design and features for the main page
- Redesigned the main page with a modern look and feel.
- Added search and filtering functionality for drills.
- Implemented pagination for browsing drills.
- Added the ability for users to mark drills as favorites.
2025-12-07 18:15:23 +00:00

2 lines
114 B
SQL

ALTER TABLE `team_members` ADD `role` ENUM('owner', 'admin', 'member') NOT NULL DEFAULT 'member' AFTER `user_id`;