Fix missing comma
This commit is contained in:
parent
6cfddb2b28
commit
edff709667
@ -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," +
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user