Add DB version with alimbic and add log system

This commit is contained in:
2024-05-11 15:16:16 +00:00
parent 392dee8640
commit a7e31b8ca9
24 changed files with 1131 additions and 137 deletions

View File

@ -1,3 +1,39 @@
# fuware
the warehouse use to tracking item in house
the warehouse use to tracking item in house
# Common CLI
### alembic
generate migration
```bash
alembic revision -m "version message"
```
```bash
alembic upgrade head
```
```bash
alembic history
```
```bash
alembic current
```
```bash
alembic downgrade -1
```
```bash
alembic upgrade +1
```
generate migration auto code
```bash
alembic revision --autogenerate -m "version message"
```