added the private feature

This commit is contained in:
SJ
2016-02-10 14:57:30 +01:00
parent 93e1d0e7fe
commit 2fbb41264c
20 changed files with 117 additions and 2 deletions

View File

@ -314,6 +314,12 @@ create table if not exists `note` (
) ENGINE=InnoDB;
create table if not exists `private` (
`id` bigint unsigned not null unique,
key (`id`)
) ENGINE=InnoDB;
create table if not exists `remote` (
`remotedomain` char(64) not null primary key,
`remotehost` char(64) not null,