provide attributes from SQL database

This commit is contained in:
Andreas Steffen
2009-12-16 12:31:41 +01:00
parent b75002bc95
commit a461e20dd8
5 changed files with 44 additions and 3 deletions
@@ -183,6 +183,13 @@ CREATE TABLE leases (
released INTEGER NOT NULL
);
DROP TABLE IF EXISTS attributes;
CREATE TABLE attributes (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
type INTEGER NOT NULL,
value BLOB NOT NULL
);
DROP TABLE IF EXISTS ike_sas;
CREATE TABLE ike_sas (
local_spi BLOB NOT NULL PRIMARY KEY,