consistency

This commit is contained in:
nobody 2022-02-20 20:21:40 -08:00
parent f34f62e8da
commit 8f891dea45
2 changed files with 0 additions and 6 deletions

View file

@ -44,8 +44,6 @@ CREATE TABLE IF NOT EXISTS `abook` (
KEY `abook_channel` (`abook_channel`),
KEY `abook_xchan` (`abook_xchan`(191)),
KEY `abook_alias` (`abook_alias`(191)),
KEY `abook_my_perms` (`abook_my_perms`),
KEY `abook_their_perms` (`abook_their_perms`),
KEY `abook_closeness` (`abook_closeness`),
KEY `abook_created` (`abook_created`),
KEY `abook_updated` (`abook_updated`),

View file

@ -17,8 +17,6 @@ CREATE TABLE "abook" (
"abook_channel" bigint NOT NULL,
"abook_xchan" text NOT NULL DEFAULT '',
"abook_alias" 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',
@ -46,8 +44,6 @@ CREATE TABLE "abook" (
create index "abook_channel" on abook ("abook_channel");
create index "abook_xchan" on abook ("abook_xchan");
create index "abook_alias" on abook ("abook_alias");
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");