Created
June 24, 2022 09:40
-
-
Save aaabramov/cede225b50b98adb548cd04130f31317 to your computer and use it in GitHub Desktop.
DDL for https://t.me/gratus_bot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://telegra.ph/Gratus-Bot-06-24 | |
CREATE TABLE "data_entity" | |
( | |
"id" BIGSERIAL NOT NULL PRIMARY KEY, | |
"userId" BIGINT NOT NULL, | |
"chatId" BIGINT NOT NULL, | |
"createdAt" TIMESTAMPTZ NOT NULL DEFAULT NOW() | |
); | |
CREATE INDEX idx_data_entity_userId_chatId ON "data_entity" ("userId", "chatId"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment