You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We often have apps that ship with a fixed database. We typically include a SQLite DB in the app for this. The downside of this is that the DB file is binary and cannot be edited easily.
We could allow a JSON DB to be provided by the user:
define which tables & columns are available via a JSON schema
the data can be stored in the model folder
keep it logically separate from the config DB, since config often has special handling (filtered out etc...)
The text was updated successfully, but these errors were encountered:
We often have apps that ship with a fixed database. We typically include a SQLite DB in the app for this. The downside of this is that the DB file is binary and cannot be edited easily.
We could allow a JSON DB to be provided by the user:
The text was updated successfully, but these errors were encountered: