aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/sql/mysql.sql
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-11-30 17:38:49 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-11-30 17:38:49 +0100
commitcbdcca7fd7b74676766272394d8ad6c6b65f8155 (patch)
treebfd4781fbc717c26d13b22c82c7fcce547d6542e /src/libcharon/plugins/sql/mysql.sql
parentf4e5acef3afdaa54f636f62516588c2a0a057fd1 (diff)
downloadstrongswan-cbdcca7fd7b74676766272394d8ad6c6b65f8155.tar.bz2
strongswan-cbdcca7fd7b74676766272394d8ad6c6b65f8155.tar.xz
renamed algorithm to proposal
Diffstat (limited to 'src/libcharon/plugins/sql/mysql.sql')
-rw-r--r--src/libcharon/plugins/sql/mysql.sql18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/libcharon/plugins/sql/mysql.sql b/src/libcharon/plugins/sql/mysql.sql
index 3262015a1..668d9d0b1 100644
--- a/src/libcharon/plugins/sql/mysql.sql
+++ b/src/libcharon/plugins/sql/mysql.sql
@@ -38,18 +38,18 @@ CREATE TABLE `child_config_traffic_selector` (
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-DROP TABLE IF EXISTS `algorithms`;
-CREATE TABLE `algorithms` (
+DROP TABLE IF EXISTS `proposals`;
+CREATE TABLE `proposals` (
`id` int(10) unsigned NOT NULL auto_increment,
- `algorithm` varchar(128) NOT NULL
+ `proposal` varchar(128) NOT NULL
);
-DROP TABLE IF EXISTS `child_config_algorithm`;
-CREATE TABLE `child_config_algorithm` (
+DROP TABLE IF EXISTS `child_config_proposal`;
+CREATE TABLE `child_config_proposal` (
`child_cfg` int(10) unsigned NOT NULL,
`prio` smallint(5) unsigned NOT NULL,
- `alg` int(10) unsigned NOT NULL
+ `prop` int(10) unsigned NOT NULL
);
@@ -64,11 +64,11 @@ CREATE TABLE `ike_configs` (
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-DROP TABLE IF EXISTS `ike_config_algorithm`;
-CREATE TABLE `ike_config_algorithm` (
+DROP TABLE IF EXISTS `ike_config_proposal`;
+CREATE TABLE `ike_config_proposal` (
`ike_cfg` int(10) unsigned NOT NULL,
`prio` smallint(5) unsigned NOT NULL,
- `alg` int(10) unsigned NOT NULL
+ `prop` int(10) unsigned NOT NULL
);