
This PR updates the `admin` column on the `users` table to be non-nullable. We were already treating it like this in practice. All rows in the production database already have a value for the `admin` column. Release Notes: - N/A
2 lines
51 B
SQL
2 lines
51 B
SQL
alter table users
|
|
alter column admin set not null;
|