Files
ppanel-web/migrations/postgres/02007_adapte_rule.sql
T
Ember Moth 2744c70c5c Initial
2026-07-05 20:27:58 +08:00

11 lines
244 B
SQL

-- migrate:up
ALTER TABLE "server_rule_group"
ADD COLUMN "default" BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN "type" VARCHAR(100) NOT NULL DEFAULT '';
-- migrate:down
ALTER TABLE "server_rule_group"
DROP COLUMN "default",
DROP COLUMN "type";