schema updates for zot access tokens
This commit is contained in:
parent
f70f4a4e85
commit
94bd53c0f1
2
boot.php
2
boot.php
@ -47,7 +47,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' );
|
|||||||
define ( 'STD_VERSION', '1.9' );
|
define ( 'STD_VERSION', '1.9' );
|
||||||
define ( 'ZOT_REVISION', '1.1' );
|
define ( 'ZOT_REVISION', '1.1' );
|
||||||
|
|
||||||
define ( 'DB_UPDATE_VERSION', 1179 );
|
define ( 'DB_UPDATE_VERSION', 1180 );
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -141,6 +141,23 @@ CREATE TABLE IF NOT EXISTS `app` (
|
|||||||
KEY `app_edited` (`app_edited`)
|
KEY `app_edited` (`app_edited`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS `atoken` (
|
||||||
|
`atoken_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`atoken_aid` int(11) NOT NULL DEFAULT 0,
|
||||||
|
`atoken_uid` int(11) NOT NULL DEFAULT 0,
|
||||||
|
`atoken_name` char(255) NOT NULL DEFAULT '',
|
||||||
|
`atoken_token` char(255) NOT NULL DEFAULT '',
|
||||||
|
`atoken_expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||||
|
PRIMARY KEY (`atoken_id`),
|
||||||
|
KEY `atoken_aid` (`atoken_aid`),
|
||||||
|
KEY `atoken_uid` (`atoken_uid`),
|
||||||
|
KEY `atoken_uid_2` (`atoken_uid`),
|
||||||
|
KEY `atoken_name` (`atoken_name`),
|
||||||
|
KEY `atoken_token` (`atoken_token`),
|
||||||
|
KEY `atoken_expires` (`atoken_expires`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `attach` (
|
CREATE TABLE IF NOT EXISTS `attach` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`aid` int(10) unsigned NOT NULL DEFAULT '0',
|
`aid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||||
|
@ -137,6 +137,21 @@ create index "app_created" on app ("app_created");
|
|||||||
create index "app_edited" on app ("app_edited");
|
create index "app_edited" on app ("app_edited");
|
||||||
create index "app_deleted" on app ("app_deleted");
|
create index "app_deleted" on app ("app_deleted");
|
||||||
create index "app_system" on app ("app_system");
|
create index "app_system" on app ("app_system");
|
||||||
|
|
||||||
|
CREATE TABLE "atoken" (
|
||||||
|
"atoken_id" serial NOT NULL,
|
||||||
|
"atoken_aid" bigint NOT NULL DEFAULT 0,
|
||||||
|
"atoken_uid" bigint NOT NULL DEFAULT 0,
|
||||||
|
"atoken_name" varchar(255) NOT NULL DEFAULT '',
|
||||||
|
"atoken_token" varchar(255) NOT NULL DEFAULT '',
|
||||||
|
"atoken_expires" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
|
||||||
|
PRIMARY KEY ("atoken_id"));
|
||||||
|
create index atoken_aid on atoken (atoken_aid);
|
||||||
|
create index atoken_uid on atoken (atoken_uid);
|
||||||
|
create index atoken_name on atoken (atoken_name);
|
||||||
|
create index atoken_token on atoken (atoken_token);
|
||||||
|
create index atoken_expires on atoken (atoken_expires);
|
||||||
|
|
||||||
CREATE TABLE "attach" (
|
CREATE TABLE "attach" (
|
||||||
"id" serial NOT NULL,
|
"id" serial NOT NULL,
|
||||||
"aid" bigint NOT NULL DEFAULT '0',
|
"aid" bigint NOT NULL DEFAULT '0',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
define( 'UPDATE_VERSION' , 1179 );
|
define( 'UPDATE_VERSION' , 1180 );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -2360,4 +2360,47 @@ function update_r1178() {
|
|||||||
if($r1)
|
if($r1)
|
||||||
return UPDATE_SUCCESS;
|
return UPDATE_SUCCESS;
|
||||||
return UPDATE_FAILED;
|
return UPDATE_FAILED;
|
||||||
|
}
|
||||||
|
|
||||||
|
function update_r1179() {
|
||||||
|
|
||||||
|
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
|
||||||
|
$r1 = q("CREATE TABLE atoken (
|
||||||
|
atoken_id serial NOT NULL,
|
||||||
|
atoken_aid bigint NOT NULL DEFAULT 0,
|
||||||
|
atoken_uid bigint NOT NULL DEFAULT 0,
|
||||||
|
atoken_name varchar(255) NOT NULL DEFAULT '',
|
||||||
|
atoken_token varchar(255) NOT NULL DEFAULT '',
|
||||||
|
atoken_expires timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
|
||||||
|
PRIMARY KEY (atoken_id)) ");
|
||||||
|
$r2 = q("create index atoken_aid on atoken (atoken_aid)");
|
||||||
|
$r3 = q("create index atoken_uid on atoken (atoken_uid)");
|
||||||
|
$r4 = q("create index atoken_name on atoken (atoken_name)");
|
||||||
|
$r5 = q("create index atoken_token on atoken (atoken_token)");
|
||||||
|
$r6 = q("create index atoken_expires on atoken (atoken_expires)");
|
||||||
|
|
||||||
|
$r = $r1 && $r2 && $r3 && $r4 && $r5 && $r6;
|
||||||
|
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$r = q("CREATE TABLE IF NOT EXISTS `atoken` (
|
||||||
|
`atoken_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`atoken_aid` int(11) NOT NULL DEFAULT 0,
|
||||||
|
`atoken_uid` int(11) NOT NULL DEFAULT 0,
|
||||||
|
`atoken_name` char(255) NOT NULL DEFAULT '',
|
||||||
|
`atoken_token` char(255) NOT NULL DEFAULT '',
|
||||||
|
`atoken_expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||||
|
PRIMARY KEY (`atoken_id`),
|
||||||
|
KEY `atoken_aid` (`atoken_aid`),
|
||||||
|
KEY `atoken_uid` (`atoken_uid`),
|
||||||
|
KEY `atoken_name` (`atoken_name`),
|
||||||
|
KEY `atoken_token` (`atoken_token`),
|
||||||
|
KEY `atoken_expires` (`atoken_expires`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ");
|
||||||
|
|
||||||
|
if($r)
|
||||||
|
return UPDATE_SUCCESS;
|
||||||
|
return UPDATE_FAILED;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
Reference in New Issue
Block a user