Fix compilation error

This commit is contained in:
Noikoio 2017-11-11 18:11:51 -08:00
parent 25a441fba9
commit 588c52f9a8

View file

@ -70,7 +70,7 @@ namespace Noikoio.RegexBot.Feature.DBCache
+ "created_ts timestamptz not null, " + "created_ts timestamptz not null, "
+ "edited_ts timestamptz null, " + "edited_ts timestamptz null, "
+ "message text not null, " + "message text not null, "
+ $"FOREIGN KEY (author_id, guild_id) references {EntityCache.TableUser} (user_id, guild_id)" + $"FOREIGN KEY (author_id, guild_id) references {EntityCache.Sql.TableUser} (user_id, guild_id)"
+ ")"; + ")";
// TODO figure out how to store message edits // TODO figure out how to store message edits
c.ExecuteNonQuery(); c.ExecuteNonQuery();