Register a user account for the AS when the AS registers. Add 'sender' column to AS table.

This commit is contained in:
Kegan Dougal 2015-02-09 12:03:37 +00:00
parent 73a680b2a8
commit ac3183caaa
5 changed files with 14 additions and 4 deletions

View file

@ -18,6 +18,7 @@ CREATE TABLE IF NOT EXISTS application_services(
url TEXT,
token TEXT,
hs_token TEXT,
sender TEXT,
UNIQUE(token) ON CONFLICT ROLLBACK
);

View file

@ -18,6 +18,7 @@ CREATE TABLE IF NOT EXISTS application_services(
url TEXT,
token TEXT,
hs_token TEXT,
sender TEXT,
UNIQUE(token) ON CONFLICT ROLLBACK
);