diff options
Diffstat (limited to 'vendor/examples/sql/sqlite.propertystorage.sql')
-rw-r--r-- | vendor/examples/sql/sqlite.propertystorage.sql | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/vendor/examples/sql/sqlite.propertystorage.sql b/vendor/examples/sql/sqlite.propertystorage.sql deleted file mode 100644 index 72e860ce3..000000000 --- a/vendor/examples/sql/sqlite.propertystorage.sql +++ /dev/null @@ -1,10 +0,0 @@ -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); |