aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/sql/mysql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcharon/plugins/sql/mysql.sql')
-rw-r--r--src/libcharon/plugins/sql/mysql.sql14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/libcharon/plugins/sql/mysql.sql b/src/libcharon/plugins/sql/mysql.sql
index f4a62a6f8..5a6dd10e9 100644
--- a/src/libcharon/plugins/sql/mysql.sql
+++ b/src/libcharon/plugins/sql/mysql.sql
@@ -187,11 +187,23 @@ CREATE TABLE leases (
PRIMARY KEY (`id`)
);
+DROP TABLE IF EXISTS attribute_pools;
+CREATE TABLE attribute_pools (
+ `id` int(10) unsigned NOT NULL auto_increment,
+ `name` varchar(32) NOT NULL,
+ PRIMARY KEY (`id`)
+);
+
DROP TABLE IF EXISTS attributes;
CREATE TABLE attributes (
`id` int(10) unsigned NOT NULL auto_increment,
+ `identity` int(10) unsigned NOT NULL default '0',
+ `pool` int(10) unsigned NOT NULL default '0',
`type` int(10) unsigned NOT NULL,
- `value` varbinary(16) NOT NULL
+ `value` varbinary(16) NOT NULL,
+ PRIMARY KEY (`id`),
+ INDEX (`identity`),
+ INDEX (`pool`)
);
DROP TABLE IF EXISTS ike_sas;