mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 09:04:55 +00:00
5 lines
180 B
SQL
5 lines
180 B
SQL
-- Add migration script here
|
|
ALTER TABLE team_members
|
|
ADD COLUMN permissions bigint default 0 NOT NULL;
|
|
ALTER TABLE team_members
|
|
ADD COLUMN accepted boolean default false NOT NULL; |