dbo.exec_oneshot('create table irc_servers if not exists (netname text primary key, hostname text, nick text)')
dbo.exec_oneshot('create table irc_channels if not exists (chanel text primary key, netname text)')
dbo.exec_oneshot('create table matrix_rooms if not exists (room_id text primary key, name text)')
dbo.exec_oneshot('create table if not exists irc_servers (netname text primary key, hostname text, nick text)')
dbo.exec_oneshot('create table if not exists irc_channels (chanel text primary key, netname text)')
dbo.exec_oneshot('create table if not exists matrix_rooms (room_id text primary key, name text)')