JustPaste.it

{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "1edf27255985576945ad5acde6de3f8b",
"entities": [
{
"tableName": "EntityExample",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`a` INTEGER NOT NULL, `b` INTEGER NOT NULL, PRIMARY KEY(`a`, `b`))",
"fields": [
{
"fieldPath": "a",
"columnName": "a",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "b",
"columnName": "b",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"columnNames": [
"a",
"b"
],
"autoGenerate": false
},
"indices": [
{
"name": "index_EntityExample_a",
"unique": false,
"columnNames": [
"a"
],
"createSql": "CREATE INDEX IF NOT EXISTS `index_EntityExample_a` ON `${TABLE_NAME}` (`a`)"
},
{
"name": "index_EntityExample_b",
"unique": false,
"columnNames": [
"b"
],
"createSql": "CREATE INDEX IF NOT EXISTS `index_EntityExample_b` ON `${TABLE_NAME}` (`b`)"
}
],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"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, '1edf27255985576945ad5acde6de3f8b')"
]
}
}