44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
"""empty message
|
|
|
|
Revision ID: b5eb4a04c77e
|
|
Revises: 5cce35244087
|
|
Create Date: 2018-10-22 23:11:50.584996
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'b5eb4a04c77e'
|
|
down_revision = '5cce35244087'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('dashboard_widgets',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('dashboard_id', sa.Integer(), nullable=False),
|
|
sa.Column('device_id', sa.Integer(), nullable=True),
|
|
sa.Column('height', sa.Integer(), nullable=False),
|
|
sa.Column('width', sa.Integer(), nullable=False),
|
|
sa.Column('x', sa.Integer(), nullable=False),
|
|
sa.Column('y', sa.Integer(), nullable=False),
|
|
sa.Column('chart_type', sa.String(), nullable=False),
|
|
sa.Column('filters', postgresql.JSON(astext_type=sa.Text()), nullable=False),
|
|
sa.Column('created_at', sa.DateTime(), nullable=False),
|
|
sa.Column('modified_at', sa.DateTime(), nullable=False),
|
|
sa.ForeignKeyConstraint(['dashboard_id'], ['dashboards.id'], ),
|
|
sa.ForeignKeyConstraint(['device_id'], ['devices.id'], ),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table('dashboard_widgets')
|
|
# ### end Alembic commands ###
|