You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
JSON
56 lines
1.7 KiB
JSON
{
|
|
"id" : "SHOP",
|
|
"name" : {
|
|
"default" : "Shop",
|
|
"CZ" : "Prodejna"
|
|
},
|
|
"descriptoin" : {
|
|
"default" : "",
|
|
"CZ" : ""
|
|
},
|
|
"schemaVersion" : 1,
|
|
"sql" : [
|
|
"CREATE TABLE \"VoucherItem\" (
|
|
\"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
\"name\" TEXT NULL,
|
|
\"count\" INTEGER NOT NULL,
|
|
\"unitPrice\" INTEGER NOT NULL,
|
|
\"price\" INTEGER NOT NULL,
|
|
\"refId\" INTEGER NOT NULL,
|
|
\"itemPlugin\" TEXT NULL,
|
|
\"vatType\" INTEGER NOT NULL);
|
|
|
|
CREATE TABLE \"Voucher\" (
|
|
\"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
\"name\" TEXT NULL,
|
|
\"description\" TEXT NULL,
|
|
\"contact\" INTEGER NULL,
|
|
\"totalPrice\" INTEGER NOT NULL,
|
|
\"status\" INTEGER NOT NULL,
|
|
CONSTRAINT \"contact_fk\"
|
|
FOREIGN KEY (\"contact\")
|
|
REFERENCES \"AddressbookData\" (\"id\")
|
|
DEFERRABLE INITIALLY DEFERRED);
|
|
|
|
CREATE TABLE \"Voucher_items\" (
|
|
\"object_id\" INTEGER NOT NULL,
|
|
\"index\" INTEGER NOT NULL,
|
|
\"value\" INTEGER NULL,
|
|
CONSTRAINT \"object_id_fk\"
|
|
FOREIGN KEY (\"object_id\")
|
|
REFERENCES \"Voucher\" (\"id\")
|
|
ON DELETE CASCADE,
|
|
CONSTRAINT \"value_fk\"
|
|
FOREIGN KEY (\"value\")
|
|
REFERENCES \"VoucherItem\" (\"id\")
|
|
DEFERRABLE INITIALLY DEFERRED);
|
|
|
|
CREATE INDEX \"Voucher_items_object_id_i\"
|
|
ON \"Voucher_items\" (\"object_id\");
|
|
|
|
CREATE INDEX \"Voucher_items_index_i\"
|
|
ON \"Voucher_items\" (\"index\");"
|
|
],
|
|
"dependencies" : [ "ADDRESSBOOK" ]
|
|
}
|