mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
refactor: rename config table to system_config
This commit is contained in:
parent
a0d2773ef4
commit
fc7a6357c0
4 changed files with 10 additions and 10 deletions
|
|
@ -80,7 +80,7 @@ public partial class ModelRepository
|
|||
var system = await _db.QueryFirst<PKSystem>(conn, query, "returning *");
|
||||
_logger.Information("Created {SystemId}", system.Id);
|
||||
|
||||
var (q, pms) = ("insert into config (system) values (@system)", new { system = system.Id });
|
||||
var (q, pms) = ("insert into system_config (system) values (@system)", new { system = system.Id });
|
||||
|
||||
if (conn == null)
|
||||
await _db.Execute(conn => conn.QueryAsync(q, pms));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue