{ "id" : "CAMP", "name" : { "default" : "Camp", "CZ" : "Kemp" }, "descriptoin" : { "default" : "", "CZ" : "" }, "schemaVersion" : 5, "sql" : [ "CREATE TABLE \"CampData\" ( \"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, \"numSer\" TEXT NULL, \"start\" TEXT NULL, \"end\" TEXT NULL, \"ownerFirstame\" TEXT NULL, \"ownerLastname\" TEXT NULL, \"ownerAddress\" TEXT NULL, \"totalPrice\" INTEGER NOT NULL, \"sale\" INTEGER NOT NULL, \"fixedSale\" INTEGER NOT NULL, \"season\" INTEGER NULL, CONSTRAINT \"season_fk\" FOREIGN KEY (\"season\") REFERENCES \"Season\" (\"id\") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE \"AddressItem\" ( \"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, \"firstName\" TEXT NULL, \"lastName\" TEXT NULL, \"address\" TEXT NULL, \"adbItem\" INTEGER NULL, \"price\" INTEGER NOT NULL, \"campData\" INTEGER NOT NULL, \"personPrice\" INTEGER NULL, CONSTRAINT \"adbItem_fk\" FOREIGN KEY (\"adbItem\") REFERENCES \"AddressbookData\" (\"id\") DEFERRABLE INITIALLY DEFERRED, CONSTRAINT \"campData_fk\" FOREIGN KEY (\"campData\") REFERENCES \"CampData\" (\"id\") DEFERRABLE INITIALLY DEFERRED, CONSTRAINT \"personPrice_fk\" FOREIGN KEY (\"personPrice\") REFERENCES \"PersonPrice\" (\"id\") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE \"ServiceItem\" ( \"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, \"name\" TEXT NULL, \"code\" TEXT NULL, \"price\" INTEGER NOT NULL, \"salePossible\" INTEGER NOT NULL, \"type\" INTEGER NOT NULL, \"campData\" INTEGER NOT NULL, CONSTRAINT \"campData_fk\" FOREIGN KEY (\"campData\") REFERENCES \"CampData\" (\"id\") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE \"Sale\" ( \"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, \"sale\" INTEGER NOT NULL, \"fixed\" INTEGER NOT NULL); CREATE TABLE \"PersonPrice\" ( \"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, \"description\" TEXT NULL, \"fromAge\" INTEGER NOT NULL, \"toAge\" INTEGER NOT NULL, \"price\" INTEGER NOT NULL, \"active\" INTEGER NOT NULL); ", "ALTER TABLE Sale ADD \"description\" TEXT NULL; ", "ALTER TABLE AddressItem ADD \"owner\" INTEGER NULL; ", "ALTER TABLE ServiceItem ADD \"sale\" INTEGER NULL; ALTER TABLE ServiceItem ADD \"description\" TEXT NULL; ", "ALTER TABLE ServiceItem ADD \"totalPrice\" INTEGER NULL; ALTER TABLE ServiceItem ADD \"fullPrice\" INTEGER NULL; ALTER TABLE CampData ADD \"fullPrice\" INTEGER NULL; ALTER TABLE CampData ADD \"totalSale\" INTEGER NULL; " ], "dependencies" : [ "ADDRESSBOOK", "SHOP", "SERVICES" ], "translations" : { "CZ" : { "name" : "Název", "shortName" : "Zobrazit na účtence", "code" : "Kód", "type" : "Druh", "price" : "Cena", "vat" : "DPH", "count" : "Počet" } } }