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.
34 lines
772 B
JSON
34 lines
772 B
JSON
{
|
|
"id" : "COMMODITY",
|
|
"name" : {
|
|
"default" : "Commodity",
|
|
"CZ" : "Zboží"
|
|
},
|
|
"descriptoin" : {
|
|
"default" : "",
|
|
"CZ" : ""
|
|
},
|
|
"schemaVersion" : 1,
|
|
"sql" : [
|
|
"CREATE TABLE \"CommodityTypeData\" (
|
|
\"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
\"name\" TEXT NULL);
|
|
|
|
CREATE TABLE \"CommodityData\" (
|
|
\"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
\"name\" TEXT NULL,
|
|
\"shortName\" TEXT NULL,
|
|
\"code\" TEXT NULL,
|
|
\"type\" INTEGER NULL,
|
|
\"price\" INTEGER NOT NULL,
|
|
\"vat\" INTEGER NOT NULL,
|
|
\"count\" INTEGER NOT NULL,
|
|
CONSTRAINT \"type_fk\"
|
|
FOREIGN KEY (\"type\")
|
|
REFERENCES \"CommodityTypeData\" (\"id\")
|
|
DEFERRABLE INITIALLY DEFERRED);"
|
|
|
|
],
|
|
"dependencies" : []
|
|
}
|