- Add owner/admin/member roles with proper permissions - Implement invite links and join requests system - Add organization settings dialog with member management - Create database migrations for invitations and invite links - Update backend API with org management endpoints - Fix compilation errors and audit logging - Update frontend models and API integration
4 lines
223 B
SQL
4 lines
223 B
SQL
-- Add invite_link_token to organizations for shareable invite links
|
|
|
|
ALTER TABLE organizations ADD COLUMN invite_link_token TEXT UNIQUE;
|
|
CREATE INDEX idx_organizations_invite_link_token ON organizations(invite_link_token); |