Skip to content

Commit 120f309

Browse files
committed
Merge branch 'flask-migration' of https://github.com/hucares/company-website into hucares-flask-migration
2 parents c09a23d + 6b8da15 commit 120f309

File tree

8 files changed

+239
-3
lines changed

8 files changed

+239
-3
lines changed

env.sh

+2
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ then
2222
fi
2323
cd $ENV_DIR
2424

25+
export FLASK_APP=main.py
26+
2527
echo "Using virtual environment $VIRTUAL_ENV with project path $PROJECTPATH."

main.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
from views import service_views
1010
from views import web_views
1111

12+
from flask_migrate import Migrate
13+
from database import db
14+
1215
# Silence pyflakes
1316
assert patches
1417
assert service_views
@@ -19,7 +22,9 @@
1922

2023
app_config.init_prod_app(app)
2124

25+
migrate = Migrate(app, db)
26+
2227
if __name__ == '__main__':
23-
app.debug = constants.DEBUG
24-
port = int(os.environ.get("PORT", 5000))
25-
app.run(host='0.0.0.0', port=port, threaded=True)
28+
app.debug = constants.DEBUG
29+
port = int(os.environ.get("PORT", 5000))
30+
app.run(host='0.0.0.0', port=port, threaded=True)

migrations/README

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Generic single-database configuration.

migrations/alembic.ini

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# A generic, single database configuration.
2+
3+
[alembic]
4+
# template used to generate migration files
5+
# file_template = %%(rev)s_%%(slug)s
6+
7+
# set to 'true' to run the environment during
8+
# the 'revision' command, regardless of autogenerate
9+
# revision_environment = false
10+
11+
12+
# Logging configuration
13+
[loggers]
14+
keys = root,sqlalchemy,alembic
15+
16+
[handlers]
17+
keys = console
18+
19+
[formatters]
20+
keys = generic
21+
22+
[logger_root]
23+
level = WARN
24+
handlers = console
25+
qualname =
26+
27+
[logger_sqlalchemy]
28+
level = WARN
29+
handlers =
30+
qualname = sqlalchemy.engine
31+
32+
[logger_alembic]
33+
level = INFO
34+
handlers =
35+
qualname = alembic
36+
37+
[handler_console]
38+
class = StreamHandler
39+
args = (sys.stderr,)
40+
level = NOTSET
41+
formatter = generic
42+
43+
[formatter_generic]
44+
format = %(levelname)-5.5s [%(name)s] %(message)s
45+
datefmt = %H:%M:%S

migrations/env.py

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
from __future__ import with_statement
2+
from alembic import context
3+
from sqlalchemy import engine_from_config, pool
4+
from logging.config import fileConfig
5+
import logging
6+
7+
# this is the Alembic Config object, which provides
8+
# access to the values within the .ini file in use.
9+
config = context.config
10+
11+
# Interpret the config file for Python logging.
12+
# This line sets up loggers basically.
13+
fileConfig(config.config_file_name)
14+
logger = logging.getLogger('alembic.env')
15+
16+
# add your model's MetaData object here
17+
# for 'autogenerate' support
18+
# from myapp import mymodel
19+
# target_metadata = mymodel.Base.metadata
20+
from flask import current_app
21+
config.set_main_option('sqlalchemy.url',
22+
current_app.config.get('SQLALCHEMY_DATABASE_URI'))
23+
target_metadata = current_app.extensions['migrate'].db.metadata
24+
25+
# other values from the config, defined by the needs of env.py,
26+
# can be acquired:
27+
# my_important_option = config.get_main_option("my_important_option")
28+
# ... etc.
29+
30+
31+
def run_migrations_offline():
32+
"""Run migrations in 'offline' mode.
33+
34+
This configures the context with just a URL
35+
and not an Engine, though an Engine is acceptable
36+
here as well. By skipping the Engine creation
37+
we don't even need a DBAPI to be available.
38+
39+
Calls to context.execute() here emit the given string to the
40+
script output.
41+
42+
"""
43+
url = config.get_main_option("sqlalchemy.url")
44+
context.configure(url=url)
45+
46+
with context.begin_transaction():
47+
context.run_migrations()
48+
49+
50+
def run_migrations_online():
51+
"""Run migrations in 'online' mode.
52+
53+
In this scenario we need to create an Engine
54+
and associate a connection with the context.
55+
56+
"""
57+
58+
# this callback is used to prevent an auto-migration from being generated
59+
# when there are no changes to the schema
60+
# reference: http://alembic.zzzcomputing.com/en/latest/cookbook.html
61+
def process_revision_directives(context, revision, directives):
62+
if getattr(config.cmd_opts, 'autogenerate', False):
63+
script = directives[0]
64+
if script.upgrade_ops.is_empty():
65+
directives[:] = []
66+
logger.info('No changes in schema detected.')
67+
68+
engine = engine_from_config(config.get_section(config.config_ini_section),
69+
prefix='sqlalchemy.',
70+
poolclass=pool.NullPool)
71+
72+
connection = engine.connect()
73+
context.configure(connection=connection,
74+
target_metadata=target_metadata,
75+
process_revision_directives=process_revision_directives,
76+
**current_app.extensions['migrate'].configure_args)
77+
78+
try:
79+
with context.begin_transaction():
80+
context.run_migrations()
81+
finally:
82+
connection.close()
83+
84+
if context.is_offline_mode():
85+
run_migrations_offline()
86+
else:
87+
run_migrations_online()

migrations/script.py.mako

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
"""${message}
2+
3+
Revision ID: ${up_revision}
4+
Revises: ${down_revision | comma,n}
5+
Create Date: ${create_date}
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
${imports if imports else ""}
11+
12+
# revision identifiers, used by Alembic.
13+
revision = ${repr(up_revision)}
14+
down_revision = ${repr(down_revision)}
15+
branch_labels = ${repr(branch_labels)}
16+
depends_on = ${repr(depends_on)}
17+
18+
19+
def upgrade():
20+
${upgrades if upgrades else "pass"}
21+
22+
23+
def downgrade():
24+
${downgrades if downgrades else "pass"}

migrations/versions/77799c791f03_.py

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
"""empty message
2+
3+
Revision ID: 77799c791f03
4+
Revises:
5+
Create Date: 2018-01-30 14:11:55.771532
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
11+
12+
# revision identifiers, used by Alembic.
13+
revision = '77799c791f03'
14+
down_revision = None
15+
branch_labels = None
16+
depends_on = None
17+
18+
19+
def upgrade():
20+
# ### commands auto generated by Alembic - please adjust! ###
21+
op.create_table('email_list',
22+
sa.Column('email', sa.String(length=255), autoincrement=False, nullable=False),
23+
sa.Column('unsubscribed', sa.Boolean(), nullable=True),
24+
sa.PrimaryKeyConstraint('email')
25+
)
26+
op.create_table('interest',
27+
sa.Column('id', sa.Integer(), nullable=False),
28+
sa.Column('name', sa.String(length=255), nullable=True),
29+
sa.Column('company_name', sa.String(length=255), nullable=True),
30+
sa.Column('email', sa.String(length=255), nullable=True),
31+
sa.Column('website', sa.String(length=255), nullable=True),
32+
sa.Column('note', sa.Text(), nullable=True),
33+
sa.PrimaryKeyConstraint('id')
34+
)
35+
op.create_table('message_log',
36+
sa.Column('id', sa.BigInteger(), nullable=False),
37+
sa.Column('email', sa.String(length=255), nullable=True),
38+
sa.Column('msg_purpose', sa.String(length=128), nullable=True),
39+
sa.Column('msg_subject', sa.String(length=128), nullable=True),
40+
sa.Column('msg_text', sa.Text(), nullable=True),
41+
sa.Column('msg_html', sa.Text(), nullable=True),
42+
sa.Column('msg_sent', sa.DateTime(timezone=True), server_default=sa.text(u'now()'), nullable=True),
43+
sa.PrimaryKeyConstraint('id')
44+
)
45+
op.create_index(op.f('ix_message_log_email'), 'message_log', ['email'], unique=False)
46+
op.create_index(op.f('ix_message_log_msg_purpose'), 'message_log', ['msg_purpose'], unique=False)
47+
op.create_table('presale',
48+
sa.Column('id', sa.Integer(), nullable=False),
49+
sa.Column('full_name', sa.String(length=255), nullable=True),
50+
sa.Column('email', sa.String(length=255), nullable=True),
51+
sa.Column('accredited', sa.Boolean(), nullable=True),
52+
sa.Column('entity_type', sa.String(length=255), nullable=True),
53+
sa.Column('desired_allocation', sa.String(length=255), nullable=True),
54+
sa.Column('desired_allocation_currency', sa.String(length=3), nullable=True),
55+
sa.Column('citizenship', sa.String(length=2), nullable=True),
56+
sa.Column('sending_addr', sa.String(length=255), nullable=True),
57+
sa.Column('note', sa.Text(), nullable=True),
58+
sa.PrimaryKeyConstraint('id')
59+
)
60+
# ### end Alembic commands ###
61+
62+
63+
def downgrade():
64+
# ### commands auto generated by Alembic - please adjust! ###
65+
op.drop_table('presale')
66+
op.drop_index(op.f('ix_message_log_msg_purpose'), table_name='message_log')
67+
op.drop_index(op.f('ix_message_log_email'), table_name='message_log')
68+
op.drop_table('message_log')
69+
op.drop_table('interest')
70+
op.drop_table('email_list')
71+
# ### end Alembic commands ###

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ enum34==1.1.6
1515
Flask==0.12.2
1616
Flask-Babel==0.11.2
1717
Flask-Compress==1.4.0
18+
Flask-Migrate==2.1.1
1819
Flask-SQLAlchemy==2.3.2
1920
gnureadline==6.3.8
2021
gunicorn==19.7.1

0 commit comments

Comments
 (0)