Skip to content

Commit d642563

Browse files
authored
Level complete (#603)
Adds a new level unlock type #587
1 parent 47e6260 commit d642563

105 files changed

Lines changed: 772 additions & 583 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

alembic/env.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
from __future__ import with_statement
2-
from alembic import context
3-
from sqlalchemy import engine_from_config, pool
2+
43
from logging.config import fileConfig
54

5+
from sqlalchemy import engine_from_config, pool
6+
7+
from alembic import context
8+
69
# this is the Alembic Config object, which provides
710
# access to the values within the .ini file in use.
811
# alembic.context is only available for the env.py

alembic/versions/098ab7c733ea_add_user_to_flag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Create Date: 2021-08-08 23:03:49.444306
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109

10+
from alembic import op
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "098ab7c733ea"

alembic/versions/18d11f218dfe_box_rewards.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Create Date: 2019-06-24 11:48:06.497803
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109

10+
from alembic import op
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "18d11f218dfe"

alembic/versions/1ee5b63e716f_add_plain_answer_flag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
Create Date: 2024-02-15 11:17:27.270274
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109
from sqlalchemy.engine.reflection import Inspector
1110
from sqlalchemy.sql.expression import func
1211

12+
from alembic import op
1313

1414
# revision identifiers, used by Alembic.
1515
revision = '1ee5b63e716f'

alembic/versions/31918b83c372_add_box_order.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Create Date: 2022-10-12 23:02:22.212759
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109

10+
from alembic import op
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "31918b83c372"

alembic/versions/324e65d824d1_fix_password_token_length.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Create Date: 2020-11-07 10:41:52.945898
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109

10+
from alembic import op
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "324e65d824d1"

alembic/versions/469f428604aa_box__capture_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Create Date: 2019-04-06 21:11:56.017968
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109

10+
from alembic import op
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "469f428604aa"

alembic/versions/4aa1bab989f8_add_email_token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Create Date: 2021-01-29 13:39:42.842889
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109

10+
from alembic import op
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "4aa1bab989f8"

alembic/versions/5ca019edf61f_cascade_on_delete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Create Date: 2019-06-23 05:49:26.061932
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109

10+
from alembic import op
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "5ca019edf61f"

alembic/versions/67bf6ca63a9c_add_email_field.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Create Date: 2018-12-09 22:51:59.947266
66
77
"""
8-
from alembic import op
98
import sqlalchemy as sa
109

10+
from alembic import op
1111

1212
# revision identifiers, used by Alembic.
1313
revision = "67bf6ca63a9c"

0 commit comments

Comments
 (0)