chatserver/migrations/006_add_admin_verified_to_files.sql
Andrea b8f2a91411 Add kick and file management features
- Implement kick functionality with add, remove, and check operations
- Add file management with create, request, and verify operations
- Update database schema with new tables and columns
- Enhance command handling in client module for new features
- Fix argument order in verify_password function
2025-04-22 23:04:35 +02:00

2 lines
67 B
SQL

ALTER TABLE files
ADD COLUMN admin_verified BOOLEAN DEFAULT FALSE;