mirror of
https://github.com/strongswan/strongswan.git
synced 2025-11-27 00:00:29 -05:00
Tables added for CAs and CDPs.
This commit is contained in:
parent
ece5d52e38
commit
37bc379951
@ -175,6 +175,24 @@ CREATE TABLE shared_secret_identity (
|
||||
) 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;
|
||||
CREATE TABLE pools (
|
||||
`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;
|
||||
CREATE TABLE pools (
|
||||
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user