From: Damyan Ivanov Date: Sun, 6 Jan 2019 07:55:44 +0000 (+0000) Subject: SQL: table for storing connection profiles X-Git-Tag: v0.3~107 X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=commitdiff_plain;h=ee23c7fae43a1bd18ff444d96d59758d77d91720 SQL: table for storing connection profiles --- diff --git a/app/src/main/res/raw/sql_11.sql b/app/src/main/res/raw/sql_11.sql new file mode 100644 index 00000000..356aa16c --- /dev/null +++ b/app/src/main/res/raw/sql_11.sql @@ -0,0 +1,2 @@ +create table profiles(uuid varchar not null primary key, name not null, url not null, use_authentication boolean not null, auth_user varchar, auth_password varchar); +create unique index un_profile_name on profiles(name); \ No newline at end of file