mirror of
https://github.com/civsocit/olgram.git
synced 2025-12-16 23:36:17 +00:00
8 lines
225 B
SQL
8 lines
225 B
SQL
-- upgrade --
|
|
CREATE TABLE IF NOT EXISTS "defaultanswer" (
|
|
"id" BIGSERIAL NOT NULL PRIMARY KEY,
|
|
"bot_id" INT NOT NULL REFERENCES "bot" ("id") ON DELETE CASCADE
|
|
);
|
|
-- downgrade --
|
|
DROP TABLE IF EXISTS "defaultanswer";
|