feedback/sql/issues.sql

15 lines
434 B
MySQL
Raw Permalink Normal View History

2025-01-05 02:50:54 +03:00
BEGIN;
-- CREATE TABLE "issues" ---------------------------------------
CREATE TABLE "public"."issues" (
"id" Serial NOT NULL,
"telegram_id" BigInt NOT NULL,
"message" Text NOT NULL,
"date" Timestamp Without Time Zone DEFAULT now() NOT NULL,
"reply" Boolean DEFAULT 'false' NOT NULL,
CONSTRAINT "unique_issues_id" UNIQUE( "id" ) );
;
-- -------------------------------------------------------------
COMMIT;