Pslink/migrations/2021-02-10-072528_add_user_profiles/up.sql

7 lines
126 B
MySQL
Raw Normal View History

2021-02-10 09:12:42 +01:00
-- Your SQL goes here
2021-02-14 22:28:34 +01:00
ALTER TABLE users ADD COLUMN role INTEGER DEFAULT 1 NOT NULL;
UPDATE users SET role=2 where id is 1;