Tables added for CAs and CDPs.
This commit is contained in:
@@ -175,6 +175,24 @@ CREATE TABLE shared_secret_identity (
|
|||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||||
|
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS certificate_authorities;
|
||||||
|
CREATE TABLE certificate_authorities (
|
||||||
|
`id` int(10) unsigned NOT NULL auto_increment,
|
||||||
|
`certificate` int(10) unsigned NOT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||||
|
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS certificate_distribution_points;
|
||||||
|
CREATE TABLE certificate_distribution_points (
|
||||||
|
`id` int(10) unsigned NOT NULL auto_increment,
|
||||||
|
`ca` int(10) unsigned NOT NULL,
|
||||||
|
`type` tinyint(3) unsigned NOT NULL,
|
||||||
|
`uri` varchar(256) NOT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||||
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS pools;
|
DROP TABLE IF EXISTS pools;
|
||||||
CREATE TABLE pools (
|
CREATE TABLE pools (
|
||||||
`id` int(10) unsigned NOT NULL auto_increment,
|
`id` int(10) unsigned NOT NULL auto_increment,
|
||||||
|
|||||||
@@ -175,6 +175,22 @@ CREATE TABLE shared_secret_identity (
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS certificate_authorities;
|
||||||
|
CREATE TABLE certificate_authorities (
|
||||||
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||||
|
certificate INTEGER NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS certificate_distribution_points;
|
||||||
|
CREATE TABLE certificate_distribution_points (
|
||||||
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||||
|
ca INTEGER NOT NULL,
|
||||||
|
type INTEGER NOT NULL,
|
||||||
|
uri TEXT NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS pools;
|
DROP TABLE IF EXISTS pools;
|
||||||
CREATE TABLE pools (
|
CREATE TABLE pools (
|
||||||
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||||
|
|||||||
Reference in New Issue
Block a user