mirror of
https://github.com/apache/superset.git
synced 2026-04-21 17:14:57 +00:00
[panoramix] -> [dashed]
This commit is contained in:
30
dashed/migrations/versions/315b3f4da9b0_adding_log_model.py
Normal file
30
dashed/migrations/versions/315b3f4da9b0_adding_log_model.py
Normal file
@@ -0,0 +1,30 @@
|
||||
"""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')
|
||||
Reference in New Issue
Block a user