Initial commit

as generated from: pcreate -t websauna_app hotcooler

https://websauna.org/docs/tutorials/gettingstarted/tutorial_03.html
This commit is contained in:
Lance Edgar 2017-04-01 15:17:32 -05:00
commit e036abd313
26 changed files with 512 additions and 0 deletions

3
alembic/env.py Normal file
View file

@ -0,0 +1,3 @@
from websauna.system.devop import alembic
alembic.run_alembic(package="hotcooler")

28
alembic/script.py.mako Normal file
View file

@ -0,0 +1,28 @@
"""${message}
Revision ID: ${up_revision}
Revises: ${down_revision | comma,n}
Create Date: ${create_date}
"""
# revision identifiers, used by Alembic.
revision = ${repr(up_revision)}
down_revision = ${repr(down_revision)}
branch_labels = ${repr(branch_labels)}
depends_on = ${repr(depends_on)}
import datetime
import websauna.system.model.columns
from sqlalchemy.types import Text # Needed from proper creation of JSON fields as Alembic inserts astext_type=Text() row
from alembic import op
import sqlalchemy as sa
${imports if imports else ""}
def upgrade():
${upgrades if upgrades else "pass"}
def downgrade():
${downgrades if downgrades else "pass"}

View file

@ -0,0 +1,3 @@
This is a placeholder.
ws-alembic command will place generated scripts here.