diff options
author | Allan Wang <me@allanwang.ca> | 2019-03-07 18:15:46 -0500 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-03-07 18:15:46 -0500 |
commit | adf9f2f6f23de17aae51435f792de16a0680f286 (patch) | |
tree | 831f19818e766e950b549d22506f3a537a1451f7 /app/src/schemas/com.pitchedapps.frost.db.FrostPublicDatabase | |
parent | b769e36802c15f521665a353e8ed5e637efeef1f (diff) | |
download | frost-adf9f2f6f23de17aae51435f792de16a0680f286.tar.gz frost-adf9f2f6f23de17aae51435f792de16a0680f286.tar.bz2 frost-adf9f2f6f23de17aae51435f792de16a0680f286.zip |
Rebind main activity logic
Diffstat (limited to 'app/src/schemas/com.pitchedapps.frost.db.FrostPublicDatabase')
-rw-r--r-- | app/src/schemas/com.pitchedapps.frost.db.FrostPublicDatabase/1.json | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app/src/schemas/com.pitchedapps.frost.db.FrostPublicDatabase/1.json b/app/src/schemas/com.pitchedapps.frost.db.FrostPublicDatabase/1.json new file mode 100644 index 00000000..fe2aa83e --- /dev/null +++ b/app/src/schemas/com.pitchedapps.frost.db.FrostPublicDatabase/1.json @@ -0,0 +1,40 @@ +{ + "formatVersion": 1, + "database": { + "version": 1, + "identityHash": "fde868470836ff9230f1d406922d7563", + "entities": [ + { + "tableName": "tabs", + "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`position` INTEGER NOT NULL, `tab` TEXT NOT NULL, PRIMARY KEY(`position`))", + "fields": [ + { + "fieldPath": "position", + "columnName": "position", + "affinity": "INTEGER", + "notNull": true + }, + { + "fieldPath": "tab", + "columnName": "tab", + "affinity": "TEXT", + "notNull": true + } + ], + "primaryKey": { + "columnNames": [ + "position" + ], + "autoGenerate": false + }, + "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, \"fde868470836ff9230f1d406922d7563\")" + ] + } +}
\ No newline at end of file |