Skip to content

Commit

Permalink
changed db init to add datetime in banned_users
Browse files Browse the repository at this point in the history
  • Loading branch information
alepiaz committed Nov 18, 2023
1 parent ffc80fa commit e8989e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions data/db/meme_db_init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ CREATE TABLE IF NOT EXISTS credited_users
CREATE TABLE IF NOT EXISTS banned_users
(
user_id BIGINT NOT NULL,
ban_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (user_id)
);
-----
Expand Down

0 comments on commit e8989e9

Please sign in to comment.