Cassiopeia system information.
| Column | Type | Constraint | Description |
|---|---|---|---|
| db_version | INTEGER | NOT NULL | Database version. If the database is changed, the db_version MUST be increased. Followingly, system can detect incompatible database and easily upgrade database by applying upgrade patches sequentially from lower version to highest version. |
CREATE TABLE system(
db_version INTEGER NOT NULL
);