mirror of
https://github.com/apache/superset.git
synced 2026-04-12 12:47:53 +00:00
* Change in files * Renamin files and folders * cleaning up a single piece of lint * Removing boat picture from docs * add superset word mark * Update rename note in docs * Fixing images * Pinning datatables * Fixing issues with mapbox-gl * Forgot to rename one file * Linting * v0.13.0 * adding pyyaml to dev-reqs
31 lines
750 B
Python
31 lines
750 B
Python
"""adding log model
|
|
|
|
Revision ID: 315b3f4da9b0
|
|
Revises: 1a48a5411020
|
|
Create Date: 2015-12-04 11:16:58.226984
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '315b3f4da9b0'
|
|
down_revision = '1a48a5411020'
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
def upgrade():
|
|
op.create_table('logs',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('action', sa.String(length=512), nullable=True),
|
|
sa.Column('user_id', sa.Integer(), nullable=True),
|
|
sa.Column('json', sa.Text(), nullable=True),
|
|
sa.Column('dttm', sa.DateTime(), nullable=True),
|
|
sa.ForeignKeyConstraint(['user_id'], ['ab_user.id'], ),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
|
|
|
|
def downgrade():
|
|
op.drop_table('logs')
|