mirror of
https://github.com/modrinth/code.git
synced 2026-08-24 16:44:51 +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; |