2024-05-07 16:49:30 +05:00
|
|
|
# materia
|
|
|
|
|
|
|
|
Materia is a file server.
|
|
|
|
|
2024-05-08 23:13:23 +05:00
|
|
|
## Database migrations
|
|
|
|
```bash
|
|
|
|
# Initialize
|
|
|
|
alembic init -t async src/db/migrations
|
|
|
|
|
|
|
|
# Autogenerate new migration
|
|
|
|
alembic revision --autogenerate -m "Initial migration"
|
|
|
|
|
|
|
|
# Apply the migration
|
|
|
|
alembic upgrade head
|
|
|
|
|
|
|
|
# Rollback the migration
|
|
|
|
alembic downgrade head
|
|
|
|
```
|
2024-05-07 16:49:30 +05:00
|
|
|
# License
|
|
|
|
|
|
|
|
**materia** is licensed under the [MIT License](LICENSE).
|