Files
Novault-backend/migration.sql

6 lines
227 B
MySQL
Raw Permalink Normal View History

-- Add AutoExecute column to allocation_rules table
ALTER TABLE allocation_rules ADD COLUMN auto_execute BOOLEAN DEFAULT TRUE;
-- Add Phone column to user_settings table
ALTER TABLE user_settings ADD COLUMN phone VARCHAR(20);