mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56: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
|
|
@ -1,7 +1,7 @@
|
|||
-- schema version 21
|
||||
-- create `config` table
|
||||
-- create `system_config` table
|
||||
|
||||
create table config (
|
||||
create table system_config (
|
||||
system int primary key references systems(id) on delete cascade,
|
||||
ui_tz text not null default 'UTC',
|
||||
pings_enabled bool not null default true,
|
||||
|
|
@ -10,7 +10,7 @@ create table config (
|
|||
group_limit_override int
|
||||
);
|
||||
|
||||
insert into config select
|
||||
insert into system_config select
|
||||
id as system,
|
||||
ui_tz,
|
||||
pings_enabled,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue