Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lmBored committed May 7, 2024
1 parent a4fd5f9 commit 033565a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions preprocess/initializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ def table(connection):
"""
conversation_query = f"""
CREATE TABLE `{config.get('DATABASE')}`.`conversation`
(`id` BIGINT NULL ,
(`id` BIGINT ,
`in_reply_to_status_id` BIGINT NULL ,
`in_reply_to_user_id' BIGINT NULL ,
`in_reply_to_user_id` BIGINT NULL ,
PRIMARY KEY (id)) ENGINE=InnoDB
"""
connection.cursor().execute(tweet_query)
Expand Down

0 comments on commit 033565a

Please sign in to comment.