missing abook_{my,their}_perms in pg schema and missing keys in mysql schema
This commit is contained in:
@@ -16,6 +16,8 @@ CREATE TABLE "abook" (
|
||||
"abook_account" bigint NOT NULL,
|
||||
"abook_channel" bigint NOT NULL,
|
||||
"abook_xchan" text NOT NULL DEFAULT '',
|
||||
"abook_my_perms" bigint NOT NULL,
|
||||
"abook_their_perms" bigint NOT NULL,
|
||||
"abook_closeness" numeric(3) NOT NULL DEFAULT '99',
|
||||
"abook_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
|
||||
"abook_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
|
||||
@@ -40,6 +42,8 @@ CREATE TABLE "abook" (
|
||||
create index "abook_account" on abook ("abook_account");
|
||||
create index "abook_channel" on abook ("abook_channel");
|
||||
create index "abook_xchan" on abook ("abook_xchan");
|
||||
create index "abook_my_perms" on abook ("abook_my_perms");
|
||||
create index "abook_their_perms" on abook ("abook_their_perms");
|
||||
create index "abook_closeness" on abook ("abook_closeness");
|
||||
create index "abook_created" on abook ("abook_created");
|
||||
create index "abook_updated" on abook ("abook_updated");
|
||||
|
Reference in New Issue
Block a user