Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
chore: bring in sql migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
seprintour committed Aug 18, 2023
1 parent 5ca6312 commit 51f920a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sql-migrations/telegram_bot_groups.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CREATE TABLE telegram_bot_groups (
id bigint PRIMARY KEY,
created_at timestamp with time zone,
updated_at timestamp with time zone,
group_name text,
from_id bigint,
github_repo text
)
1 change: 1 addition & 0 deletions sql-migrations/telegram_tables_rls.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE telegram_bot_groups ENABLE ROW LEVEL SECURITY;

0 comments on commit 51f920a

Please sign in to comment.