Fix missing comma

This commit is contained in:
Dustin Pianalto 2020-04-30 23:53:36 -08:00
parent 6cfddb2b28
commit edff709667

View File

@ -77,7 +77,7 @@ func InitializeDatabase() {
} }
_, err = Database.Query("CREATE TABLE IF NOT EXISTS tasks(" + _, err = Database.Query("CREATE TABLE IF NOT EXISTS tasks(" +
"id serial primary key," + "id serial primary key," +
"type varchar(10) not null" + "type varchar(10) not null," +
"content text not null," + "content text not null," +
"guild_id varchar(30) not null references guilds(id)," + "guild_id varchar(30) not null references guilds(id)," +
"channel_id varchar(30) not null," + "channel_id varchar(30) not null," +