strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e45b3a
)
pool names are unique
author
Martin Willi
<martin@strongswan.org>
Fri, 22 Aug 2008 07:38:59 +0000
(07:38 -0000)
committer
Martin Willi
<martin@strongswan.org>
Fri, 22 Aug 2008 07:38:59 +0000
(07:38 -0000)
src/charon/plugins/sql/sqlite.sql
patch
|
blob
|
history
diff --git
a/src/charon/plugins/sql/sqlite.sql
b/src/charon/plugins/sql/sqlite.sql
index
e1002d4
..
f8bac1f
100644
(file)
--- a/
src/charon/plugins/sql/sqlite.sql
+++ b/
src/charon/plugins/sql/sqlite.sql
@@
-155,15
+155,11
@@
CREATE TABLE shared_secret_identity (
DROP TABLE IF EXISTS pools;
CREATE TABLE pools (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
- name TEXT NOT NULL,
+ name TEXT NOT NULL
UNIQUE
,
start BLOB NOT NULL,
end BLOB NOT NULL,
timeout INTEGER NOT NULL
);
-DROP INDEX IF EXISTS pools_name;
-CREATE INDEX pools_name ON pools (
- name
-);
DROP TABLE IF EXISTS addresses;
CREATE TABLE addresses (