Add Column

Cancel

Current Schema

CREATE TABLE "private_room"  (
  "channel_id" text primary key,
  "game_category_id" text not null references "game" ("category_id") on delete cascade,
  "parent_id" text not null,
  "is_whisper" integer not null
)