Pilldroid/app/schemas/net.foucry.pilldroid.databases.MedicineDatabase/1.json

82 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2022-03-08 19:46:20 +01:00
{
"formatVersion": 1,
"database": {
"version": 1,
2022-03-17 18:23:10 +01:00
"identityHash": "96dc5c4ccb337047e323d613eb86bdd1",
2022-03-08 19:46:20 +01:00
"entities": [
{
2022-03-17 18:23:10 +01:00
"tableName": "drugs",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`_id` INTEGER NOT NULL, `cis` TEXT, `cip13` TEXT, `cip7` TEXT, `administration_mode` TEXT, `name` TEXT, `presentation` TEXT, `label_group` TEXT, `generic_type` INTEGER, PRIMARY KEY(`_id`))",
2022-03-08 19:46:20 +01:00
"fields": [
2022-03-17 18:23:10 +01:00
{
"fieldPath": "_id",
"columnName": "_id",
"affinity": "INTEGER",
"notNull": true
},
2022-03-08 19:46:20 +01:00
{
"fieldPath": "cis",
"columnName": "cis",
"affinity": "TEXT",
2022-03-17 18:23:10 +01:00
"notNull": false
2022-03-08 19:46:20 +01:00
},
{
"fieldPath": "cip13",
"columnName": "cip13",
"affinity": "TEXT",
"notNull": false
},
{
2022-03-16 17:06:57 +01:00
"fieldPath": "cip7",
"columnName": "cip7",
2022-03-08 19:46:20 +01:00
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "administration_mode",
"columnName": "administration_mode",
"affinity": "TEXT",
"notNull": false
},
{
2022-03-16 17:06:57 +01:00
"fieldPath": "name",
"columnName": "name",
2022-03-08 19:46:20 +01:00
"affinity": "TEXT",
"notNull": false
},
{
2022-03-16 17:06:57 +01:00
"fieldPath": "presentation",
"columnName": "presentation",
"affinity": "TEXT",
2022-03-08 19:46:20 +01:00
"notNull": false
},
{
2022-03-16 17:06:57 +01:00
"fieldPath": "label_group",
"columnName": "label_group",
"affinity": "TEXT",
2022-03-08 19:46:20 +01:00
"notNull": false
},
{
2022-03-16 17:06:57 +01:00
"fieldPath": "generic_type",
"columnName": "generic_type",
2022-03-08 19:46:20 +01:00
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
2022-03-17 18:23:10 +01:00
"_id"
2022-03-08 19:46:20 +01:00
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
2022-03-17 18:23:10 +01:00
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '96dc5c4ccb337047e323d613eb86bdd1')"
2022-03-08 19:46:20 +01:00
]
}
}