Iterators also needed for tests
[trust_router.git] / schema.sql
1 create table if not exists psk_keys (keyid text primary key, key blob, client_dh_pub raw(20));
2 create table if not exists authorizations( client_dh_pub raw(20), coi string, acceptor_realm string, hostname string, apc string);
3 create index if not exists authorizations_dhpub on authorizations( client_dh_pub);
4
5 .quit
6
7