Fix migration and formatting after rebase
This commit is contained in:
parent
4ed61708fb
commit
5b9b060cfc
@ -1,7 +1,7 @@
|
|||||||
"""add funding columns to task order
|
"""add funding columns to task order
|
||||||
|
|
||||||
Revision ID: 4536f50b25bc
|
Revision ID: 4536f50b25bc
|
||||||
Revises: 71cbe76c3b87
|
Revises: 3d346b5c8f19
|
||||||
Create Date: 2019-01-10 14:24:03.101309
|
Create Date: 2019-01-10 14:24:03.101309
|
||||||
|
|
||||||
"""
|
"""
|
||||||
@ -11,7 +11,7 @@ from sqlalchemy.dialects import postgresql
|
|||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
# revision identifiers, used by Alembic.
|
||||||
revision = '4536f50b25bc'
|
revision = '4536f50b25bc'
|
||||||
down_revision = '71cbe76c3b87'
|
down_revision = '3d346b5c8f19'
|
||||||
branch_labels = None
|
branch_labels = None
|
||||||
depends_on = None
|
depends_on = None
|
||||||
|
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
|
||||||
from sqlalchemy import Column, Enum as SQLAEnum, Numeric, String, ForeignKey, Date, Integer
|
from sqlalchemy import (
|
||||||
|
Column,
|
||||||
|
Enum as SQLAEnum,
|
||||||
|
Numeric,
|
||||||
|
String,
|
||||||
|
ForeignKey,
|
||||||
|
Date,
|
||||||
|
Integer,
|
||||||
|
)
|
||||||
from sqlalchemy.types import ARRAY
|
from sqlalchemy.types import ARRAY
|
||||||
from sqlalchemy.orm import relationship
|
from sqlalchemy.orm import relationship
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user