Database
Database maintenance
Currently, the tables of database are created by SeaORM migration.
If you want to add a new table or modify the existing table, you need to update the migration files which are located in the jupiter/migration/src directory.
Attention
- DO NOT use
ArrayType in PostgreSQL but useJSONinstead, for compatibility with SQLite & MySQL. (JSON<==>serde_json::Value)