aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/examples/sql/sqlite.propertystorage.sql
blob: 72e860ce3ba1aaf653cacabd97259c51ace8ac81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
CREATE TABLE propertystorage (
    id integer primary key asc NOT NULL,
    path text NOT NULL,
    name text NOT NULL,
    valuetype integer NOT NULL,
    value string
);


CREATE UNIQUE INDEX path_property ON propertystorage (path, name);