diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-02-07 17:45:32 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-02-12 14:08:34 +0100 |
commit | 68539c38e2cb736bed41c38f1172c6d3a8d7dbd8 (patch) | |
tree | 8bfe88de0c3804ffc4e0364ceda4b11c1d3d66cf /src/libcharon/plugins/sql | |
parent | ebc665be4d3dfc6aab71caedb052e635d590c674 (diff) | |
download | strongswan-68539c38e2cb736bed41c38f1172c6d3a8d7dbd8.tar.bz2 strongswan-68539c38e2cb736bed41c38f1172c6d3a8d7dbd8.tar.xz |
sql: Remove unused cred.sql snippet
Diffstat (limited to 'src/libcharon/plugins/sql')
-rw-r--r-- | src/libcharon/plugins/sql/cred.sql | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/libcharon/plugins/sql/cred.sql b/src/libcharon/plugins/sql/cred.sql deleted file mode 100644 index 4b53e4e4b..000000000 --- a/src/libcharon/plugins/sql/cred.sql +++ /dev/null @@ -1,24 +0,0 @@ - -DROP TABLE IF EXISTS shared_secrets; -CREATE TABLE shared_secrets ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - type INTEGER, - local TEXT, - remote TEXT -); - -DROP TABLE IF EXISTS certificates; -CREATE TABLE certificates ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - type INTEGER, - subject TEXT, - data BLOB, -); - -DROP TABLE IF EXISTS private_keys; -CREATE TABLE private_keys ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - type INTEGER, - keyid BLOB, - data BLOB, -); |