Files
geniusrun/backend/internal/store/migrations/0011_profile_name.sql

4 lines
222 B
MySQL
Raw Normal View History

-- Names the profile so a future multi-profile setup can show which one is
-- active. Only one profile row exists today (id=1), so this is just a label.
ALTER TABLE profile ADD COLUMN name TEXT NOT NULL DEFAULT 'Default';