]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/raw/sql_11.sql
SQL: table for storing connection profiles
[mobile-ledger.git] / app / src / main / res / raw / sql_11.sql
1 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);
2 create unique index un_profile_name on profiles(name);