fix: update down_revision in migration and correct import statement in app_asset model

This commit is contained in:
Harry
2026-03-09 15:25:53 +08:00
parent e9be6bf2ab
commit 9afdb490ff
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import models as models
# revision identifiers, used by Alembic.
revision = "5ee0aa981887"
down_revision = "aab323465866"
down_revision = "fce013ca180e"
branch_labels = None
depends_on = None

View File

@ -2,7 +2,7 @@ from datetime import datetime
from uuid import uuid4
import sqlalchemy as sa
from sqlalchemy import DateTime, Integer, func
from sqlalchemy import DateTime, Integer, String, func
from sqlalchemy.orm import Mapped, mapped_column
from core.app.entities.app_asset_entities import AppAssetFileTree