Finish appservice txn storage impl and tests.

This commit is contained in:
Kegan Dougal 2015-03-09 15:53:03 +00:00
parent 1ead1caa18
commit 0a60bbf4fa
3 changed files with 139 additions and 16 deletions

View file

@ -15,7 +15,7 @@
CREATE TABLE IF NOT EXISTS application_services_state(
as_id INTEGER PRIMARY KEY,
state TEXT NOT NULL,
state TEXT,
last_txn TEXT,
FOREIGN KEY(as_id) REFERENCES application_services(id)
);