{ "formatVersion": 1, "database": { "version": 1, "identityHash": "cac9e9a2f4082b071336eff342e0c01f", "entities": [ { "tableName": "categories", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`local_id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL)", "fields": [ { "fieldPath": "localId", "columnName": "local_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "name", "columnName": "name", "affinity": "TEXT", "notNull": true } ], "primaryKey": { "columnNames": [ "local_id" ], "autoGenerate": true }, "indices": [ { "name": "index_categories_name", "unique": true, "columnNames": [ "name" ], "orders": [], "createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_categories_name` ON `${TABLE_NAME}` (`name`)" } ], "foreignKeys": [] }, { "tableName": "category_recipe", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`category_id` INTEGER NOT NULL, `recipe_id` INTEGER NOT NULL, PRIMARY KEY(`category_id`, `recipe_id`), FOREIGN KEY(`category_id`) REFERENCES `categories`(`local_id`) ON UPDATE CASCADE ON DELETE CASCADE , FOREIGN KEY(`recipe_id`) REFERENCES `recipe_summaries`(`remote_id`) ON UPDATE CASCADE ON DELETE CASCADE )", "fields": [ { "fieldPath": "categoryId", "columnName": "category_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "recipeId", "columnName": "recipe_id", "affinity": "INTEGER", "notNull": true } ], "primaryKey": { "columnNames": [ "category_id", "recipe_id" ], "autoGenerate": false }, "indices": [ { "name": "index_category_recipe_category_id_recipe_id", "unique": true, "columnNames": [ "category_id", "recipe_id" ], "orders": [], "createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_category_recipe_category_id_recipe_id` ON `${TABLE_NAME}` (`category_id`, `recipe_id`)" }, { "name": "index_category_recipe_recipe_id", "unique": false, "columnNames": [ "recipe_id" ], "orders": [], "createSql": "CREATE INDEX IF NOT EXISTS `index_category_recipe_recipe_id` ON `${TABLE_NAME}` (`recipe_id`)" } ], "foreignKeys": [ { "table": "categories", "onDelete": "CASCADE", "onUpdate": "CASCADE", "columns": [ "category_id" ], "referencedColumns": [ "local_id" ] }, { "table": "recipe_summaries", "onDelete": "CASCADE", "onUpdate": "CASCADE", "columns": [ "recipe_id" ], "referencedColumns": [ "remote_id" ] } ] }, { "tableName": "tags", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`local_id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL)", "fields": [ { "fieldPath": "localId", "columnName": "local_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "name", "columnName": "name", "affinity": "TEXT", "notNull": true } ], "primaryKey": { "columnNames": [ "local_id" ], "autoGenerate": true }, "indices": [ { "name": "index_tags_name", "unique": true, "columnNames": [ "name" ], "orders": [], "createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_tags_name` ON `${TABLE_NAME}` (`name`)" } ], "foreignKeys": [] }, { "tableName": "tag_recipe", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`tag_id` INTEGER NOT NULL, `recipe_id` INTEGER NOT NULL, PRIMARY KEY(`tag_id`, `recipe_id`), FOREIGN KEY(`tag_id`) REFERENCES `tags`(`local_id`) ON UPDATE CASCADE ON DELETE CASCADE , FOREIGN KEY(`recipe_id`) REFERENCES `recipe_summaries`(`remote_id`) ON UPDATE CASCADE ON DELETE CASCADE )", "fields": [ { "fieldPath": "tagId", "columnName": "tag_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "recipeId", "columnName": "recipe_id", "affinity": "INTEGER", "notNull": true } ], "primaryKey": { "columnNames": [ "tag_id", "recipe_id" ], "autoGenerate": false }, "indices": [ { "name": "index_tag_recipe_recipe_id", "unique": false, "columnNames": [ "recipe_id" ], "orders": [], "createSql": "CREATE INDEX IF NOT EXISTS `index_tag_recipe_recipe_id` ON `${TABLE_NAME}` (`recipe_id`)" } ], "foreignKeys": [ { "table": "tags", "onDelete": "CASCADE", "onUpdate": "CASCADE", "columns": [ "tag_id" ], "referencedColumns": [ "local_id" ] }, { "table": "recipe_summaries", "onDelete": "CASCADE", "onUpdate": "CASCADE", "columns": [ "recipe_id" ], "referencedColumns": [ "remote_id" ] } ] }, { "tableName": "recipe_summaries", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`remote_id` INTEGER NOT NULL, `name` TEXT NOT NULL, `slug` TEXT NOT NULL, `image` TEXT, `description` TEXT NOT NULL, `rating` INTEGER, `date_added` INTEGER NOT NULL, `date_updated` INTEGER NOT NULL, PRIMARY KEY(`remote_id`))", "fields": [ { "fieldPath": "remoteId", "columnName": "remote_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "name", "columnName": "name", "affinity": "TEXT", "notNull": true }, { "fieldPath": "slug", "columnName": "slug", "affinity": "TEXT", "notNull": true }, { "fieldPath": "image", "columnName": "image", "affinity": "TEXT", "notNull": true }, { "fieldPath": "description", "columnName": "description", "affinity": "TEXT", "notNull": true }, { "fieldPath": "rating", "columnName": "rating", "affinity": "INTEGER", "notNull": false }, { "fieldPath": "dateAdded", "columnName": "date_added", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "dateUpdated", "columnName": "date_updated", "affinity": "INTEGER", "notNull": true } ], "primaryKey": { "columnNames": [ "remote_id" ], "autoGenerate": false }, "indices": [], "foreignKeys": [] }, { "tableName": "recipe", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`remote_id` INTEGER NOT NULL, `recipe_yield` TEXT NOT NULL, PRIMARY KEY(`remote_id`))", "fields": [ { "fieldPath": "remoteId", "columnName": "remote_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "recipeYield", "columnName": "recipe_yield", "affinity": "TEXT", "notNull": true } ], "primaryKey": { "columnNames": [ "remote_id" ], "autoGenerate": false }, "indices": [], "foreignKeys": [] }, { "tableName": "recipe_ingredient", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`local_id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `recipe_id` INTEGER NOT NULL, `title` TEXT NOT NULL, `note` TEXT NOT NULL, `unit` TEXT NOT NULL, `food` TEXT NOT NULL, `disable_amount` INTEGER NOT NULL, `quantity` INTEGER NOT NULL)", "fields": [ { "fieldPath": "localId", "columnName": "local_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "recipeId", "columnName": "recipe_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "title", "columnName": "title", "affinity": "TEXT", "notNull": true }, { "fieldPath": "note", "columnName": "note", "affinity": "TEXT", "notNull": true }, { "fieldPath": "unit", "columnName": "unit", "affinity": "TEXT", "notNull": true }, { "fieldPath": "food", "columnName": "food", "affinity": "TEXT", "notNull": true }, { "fieldPath": "disableAmount", "columnName": "disable_amount", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "quantity", "columnName": "quantity", "affinity": "INTEGER", "notNull": true } ], "primaryKey": { "columnNames": [ "local_id" ], "autoGenerate": true }, "indices": [], "foreignKeys": [] }, { "tableName": "recipe_instruction", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`local_id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `recipe_id` INTEGER NOT NULL, `title` TEXT NOT NULL, `text` TEXT NOT NULL)", "fields": [ { "fieldPath": "localId", "columnName": "local_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "recipeId", "columnName": "recipe_id", "affinity": "INTEGER", "notNull": true }, { "fieldPath": "title", "columnName": "title", "affinity": "TEXT", "notNull": true }, { "fieldPath": "text", "columnName": "text", "affinity": "TEXT", "notNull": true } ], "primaryKey": { "columnNames": [ "local_id" ], "autoGenerate": true }, "indices": [], "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, 'cac9e9a2f4082b071336eff342e0c01f')" ] } }