-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allowing definition of css templates
- Loading branch information
1 parent
9838fbb
commit dbbedc3
Showing
5 changed files
with
75 additions
and
2 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
panoramix/migrations/versions/d827694c7555_css_templates.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
"""css templates | ||
Revision ID: d827694c7555 | ||
Revises: 43df8de3a5f4 | ||
Create Date: 2016-02-03 17:41:10.944019 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'd827694c7555' | ||
down_revision = '43df8de3a5f4' | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.dialects import mysql | ||
|
||
|
||
def upgrade(): | ||
op.create_table('css_templates', | ||
sa.Column('created_on', sa.DateTime(), nullable=False), | ||
sa.Column('changed_on', sa.DateTime(), nullable=False), | ||
sa.Column('id', sa.Integer(), nullable=False), | ||
sa.Column('template_name', sa.String(length=250), nullable=True), | ||
sa.Column('css', sa.Text(), nullable=True), | ||
sa.Column('changed_by_fk', sa.Integer(), nullable=True), | ||
sa.Column('created_by_fk', sa.Integer(), nullable=True), | ||
sa.ForeignKeyConstraint(['changed_by_fk'], ['ab_user.id'], ), | ||
sa.ForeignKeyConstraint(['created_by_fk'], ['ab_user.id'], ), | ||
sa.PrimaryKeyConstraint('id') | ||
) | ||
|
||
|
||
def downgrade(): | ||
op.drop_table('css_templates') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters