2025-03-20 01:14:21 -04:00
{
"formatVersion" : 1 ,
"database" : {
"version" : 1 ,
2025-03-20 13:35:32 -04:00
"identityHash" : "c9e683b1a15147a0025e3d9b787a4639" ,
2025-03-20 01:14:21 -04:00
"entities" : [
{
"tableName" : "scores" ,
2025-03-20 13:35:32 -04:00
"createSql" : "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `gameVersion` TEXT NOT NULL, `scoreValue` INTEGER NOT NULL, `startLevel` INTEGER, `endLevel` INTEGER, `linesCleared` INTEGER, `dateRecorded` INTEGER NOT NULL, `mediaUri` TEXT)" ,
2025-03-20 01:14:21 -04:00
"fields" : [
{
"fieldPath" : "id" ,
"columnName" : "id" ,
"affinity" : "INTEGER" ,
"notNull" : true
} ,
{
"fieldPath" : "gameVersion" ,
"columnName" : "gameVersion" ,
"affinity" : "TEXT" ,
"notNull" : true
} ,
{
"fieldPath" : "scoreValue" ,
"columnName" : "scoreValue" ,
"affinity" : "INTEGER" ,
"notNull" : true
} ,
{
"fieldPath" : "startLevel" ,
"columnName" : "startLevel" ,
"affinity" : "INTEGER" ,
"notNull" : false
} ,
{
"fieldPath" : "endLevel" ,
"columnName" : "endLevel" ,
"affinity" : "INTEGER" ,
"notNull" : false
} ,
{
"fieldPath" : "linesCleared" ,
"columnName" : "linesCleared" ,
"affinity" : "INTEGER" ,
"notNull" : false
} ,
{
"fieldPath" : "dateRecorded" ,
"columnName" : "dateRecorded" ,
"affinity" : "INTEGER" ,
"notNull" : true
2025-03-20 13:35:32 -04:00
} ,
{
"fieldPath" : "mediaUri" ,
"columnName" : "mediaUri" ,
"affinity" : "TEXT" ,
"notNull" : false
2025-03-20 01:14:21 -04:00
}
] ,
"primaryKey" : {
"autoGenerate" : true ,
"columnNames" : [
"id"
]
} ,
"indices" : [ ] ,
"foreignKeys" : [ ]
}
] ,
"views" : [ ] ,
"setupQueries" : [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)" ,
2025-03-20 13:35:32 -04:00
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'c9e683b1a15147a0025e3d9b787a4639')"
2025-03-20 01:14:21 -04:00
]
}
}