Skip to content

Commit

Permalink
Fixing import and database revision branches (#2640)
Browse files Browse the repository at this point in the history
* Fixing import and database revision branches
  • Loading branch information
kevgliss authored Oct 31, 2022
1 parent dd32d24 commit 9631cf8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/dispatch/case/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
from dispatch.tag.models import TagRead
from dispatch.ticket.models import TicketRead
from dispatch.workflow.models import WorkflowInstanceRead
from dispatch.signal.models import SignalRead

from .enums import CaseStatus

Expand Down Expand Up @@ -193,7 +192,6 @@ class CaseRead(CaseBase):
duplicates: Optional[List[CaseReadNested]] = []
escalated_at: Optional[datetime] = None
events: Optional[List[EventRead]] = []
# signals: Optional[List[SignalRead]] = []
groups: Optional[List[GroupRead]] = []
incidents: Optional[List[IncidentRead]] = []
name: Optional[NameStr]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"""empty message
Revision ID: 34aeedc9d09a
Revises: 4b65941d065a, 01aa49ca0470, 3a5e776ddce4
Create Date: 2022-10-31 09:41:11.971654
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '34aeedc9d09a'
down_revision = ('4b65941d065a', '01aa49ca0470', '3a5e776ddce4')
branch_labels = None
depends_on = None


def upgrade():
pass


def downgrade():
pass

0 comments on commit 9631cf8

Please sign in to comment.