dbt-app/DBTApp/app/schemas/de.cdaut.dbtapp.model.AppDatabase/1.json
2025-05-14 12:55:07 +02:00

43 lines
No EOL
1.2 KiB
JSON

{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "9293dc46eca03d297eae6183174db499",
"entities": [
{
"tableName": "Skill",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`identifier` BLOB NOT NULL, `title` TEXT NOT NULL, `description` TEXT NOT NULL, PRIMARY KEY(`identifier`))",
"fields": [
{
"fieldPath": "identifier",
"columnName": "identifier",
"affinity": "BLOB",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "description",
"columnName": "description",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"identifier"
]
}
}
],
"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, '9293dc46eca03d297eae6183174db499')"
]
}
}