collab: Make admin column non-nullable on users table (#36307)

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
This commit is contained in:
Marshall Bowers 2025-08-16 09:09:14 -04:00 committed by GitHub
parent 6f2e7c355e
commit 5620e359af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,2 @@
alter table users
alter column admin set not null;