diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-12-05 11:21:40 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-12-05 11:21:40 +0100 |
commit | 2da636fd9bb76a0fed94ee291315b26c82481918 (patch) | |
tree | 870c41078bd6cf41a24cdec76344d1d6af73d6e7 /src/libcharon/plugins/sql/mysql.sql | |
parent | e150442bede467e7b23cd43cccff2542ce079673 (diff) | |
download | strongswan-2da636fd9bb76a0fed94ee291315b26c82481918.tar.bz2 strongswan-2da636fd9bb76a0fed94ee291315b26c82481918.tar.xz |
support of reqid field in SQL database
Diffstat (limited to 'src/libcharon/plugins/sql/mysql.sql')
-rw-r--r-- | src/libcharon/plugins/sql/mysql.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcharon/plugins/sql/mysql.sql b/src/libcharon/plugins/sql/mysql.sql index a09cbeaa7..721e5a2a8 100644 --- a/src/libcharon/plugins/sql/mysql.sql +++ b/src/libcharon/plugins/sql/mysql.sql @@ -24,6 +24,7 @@ CREATE TABLE `child_configs` ( `dpd_action` tinyint(4) unsigned NOT NULL default '0', `close_action` tinyint(4) unsigned NOT NULL default '0', `ipcomp` tinyint(4) unsigned NOT NULL default '0', + `reqid` mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (`id`), INDEX (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |