From ee23c7fae43a1bd18ff444d96d59758d77d91720 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Sun, 6 Jan 2019 07:55:44 +0000 Subject: [PATCH] SQL: table for storing connection profiles --- app/src/main/res/raw/sql_11.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 app/src/main/res/raw/sql_11.sql 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 -- 2.39.2