ssl: Use QSslSocket directly to avoid redundant qobject_casts
[quassel.git] / src / core / SQL / PostgreSQL / setup_150_corestate.sql
1 CREATE TABLE core_state (
2     key TEXT NOT NULL,
3     value bytea,
4     PRIMARY KEY (key)
5 )