generated from lucxjo/template
(#8) Reporting now added, admin commands are also here
Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
parent
94d5f5afe7
commit
46c6a25164
14 changed files with 962 additions and 7 deletions
6
migrations/20231028165341_init.down.sql
Normal file
6
migrations/20231028165341_init.down.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
-- SPDX-FileCopyrightText: 2023 Louis Hollingworth <louis@hollingworth.nl>
|
||||
--
|
||||
-- SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
-- Add down migration script here
|
||||
DROP TABLE "guild";
|
||||
10
migrations/20231028165341_init.up.sql
Normal file
10
migrations/20231028165341_init.up.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
-- SPDX-FileCopyrightText: 2023 Louis Hollingworth <louis@hollingworth.nl>
|
||||
--
|
||||
-- SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
-- Add up migration script here
|
||||
CREATE TABLE "guild" (
|
||||
"id" TEXT PRIMARY KEY NOT NULL,
|
||||
"name" TEXT NOT NULL,
|
||||
"reports_channel_id" TEXT
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue