schema json files

This commit is contained in:
jacques 2022-03-16 17:06:57 +01:00
parent ad2d38538a
commit d36491fa9d
2 changed files with 21 additions and 33 deletions

View file

@ -2,11 +2,11 @@
"formatVersion": 1, "formatVersion": 1,
"database": { "database": {
"version": 1, "version": 1,
"identityHash": "5ac4c79044120e5fa2716c6a89eff9bf", "identityHash": "71fee21ecfa4bc2a534eca55c0f0cd49",
"entities": [ "entities": [
{ {
"tableName": "medics", "tableName": "medicines",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`cis` TEXT NOT NULL, `cip13` TEXT, `name` TEXT, `administration_mode` TEXT, `presentation` TEXT, `stock` INTEGER, `take` INTEGER, `warning` INTEGER, `alert` INTEGER, `last_update` INTEGER, PRIMARY KEY(`cis`))", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`cis` TEXT NOT NULL, `cip13` TEXT, `cip7` TEXT, `administration_mode` TEXT, `name` TEXT, `presentation` TEXT, `label_group` TEXT, `generic_type` INTEGER, PRIMARY KEY(`cis`))",
"fields": [ "fields": [
{ {
"fieldPath": "cis", "fieldPath": "cis",
@ -21,8 +21,8 @@
"notNull": false "notNull": false
}, },
{ {
"fieldPath": "name", "fieldPath": "cip7",
"columnName": "name", "columnName": "cip7",
"affinity": "TEXT", "affinity": "TEXT",
"notNull": false "notNull": false
}, },
@ -32,6 +32,12 @@
"affinity": "TEXT", "affinity": "TEXT",
"notNull": false "notNull": false
}, },
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": false
},
{ {
"fieldPath": "presentation", "fieldPath": "presentation",
"columnName": "presentation", "columnName": "presentation",
@ -39,32 +45,14 @@
"notNull": false "notNull": false
}, },
{ {
"fieldPath": "stock", "fieldPath": "label_group",
"columnName": "stock", "columnName": "label_group",
"affinity": "INTEGER", "affinity": "TEXT",
"notNull": false "notNull": false
}, },
{ {
"fieldPath": "take", "fieldPath": "generic_type",
"columnName": "take", "columnName": "generic_type",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "warning",
"columnName": "warning",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "alert",
"columnName": "alert",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "last_update",
"columnName": "last_update",
"affinity": "INTEGER", "affinity": "INTEGER",
"notNull": false "notNull": false
} }
@ -82,7 +70,7 @@
"views": [], "views": [],
"setupQueries": [ "setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '5ac4c79044120e5fa2716c6a89eff9bf')" "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '71fee21ecfa4bc2a534eca55c0f0cd49')"
] ]
} }
} }

View file

@ -1,11 +1,11 @@
{ {
"formatVersion": 1, "formatVersion": 1,
"database": { "database": {
"version": 2, "version": 1,
"identityHash": "ed6d0a13273d73ba9fcec1f374251efa", "identityHash": "46c4983931eaf7414e25dfd9e1a55e0f",
"entities": [ "entities": [
{ {
"tableName": "medics", "tableName": "prescriptions",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`cis` TEXT NOT NULL, `cip13` TEXT, `name` TEXT, `administration_mode` TEXT, `presentation` TEXT, `stock` REAL, `take` REAL, `warning` INTEGER, `alert` INTEGER, `last_update` INTEGER, PRIMARY KEY(`cis`))", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`cis` TEXT NOT NULL, `cip13` TEXT, `name` TEXT, `administration_mode` TEXT, `presentation` TEXT, `stock` REAL, `take` REAL, `warning` INTEGER, `alert` INTEGER, `last_update` INTEGER, PRIMARY KEY(`cis`))",
"fields": [ "fields": [
{ {
@ -82,7 +82,7 @@
"views": [], "views": [],
"setupQueries": [ "setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'ed6d0a13273d73ba9fcec1f374251efa')" "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '46c4983931eaf7414e25dfd9e1a55e0f')"
] ]
} }
} }