parent
73fa77368d
commit
703068e965
|
@ -1,8 +1,8 @@
|
||||||
"""Mai2 Kaleidx Scope Support
|
"""Mai2 PRiSM support
|
||||||
|
|
||||||
Revision ID: 16f34bf7b968
|
Revision ID: 5cf98cfe52ad
|
||||||
Revises: d0f1c7fa9505
|
Revises: 263884e774cc
|
||||||
Create Date: 2025-04-02 07:06:15.829591
|
Create Date: 2025-04-08 08:00:51.243089
|
||||||
|
|
||||||
"""
|
"""
|
||||||
from alembic import op
|
from alembic import op
|
||||||
|
@ -10,15 +10,15 @@ import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
# revision identifiers, used by Alembic.
|
||||||
revision = '16f34bf7b968'
|
revision = '5cf98cfe52ad'
|
||||||
down_revision = 'd0f1c7fa9505'
|
down_revision = '263884e774cc'
|
||||||
branch_labels = None
|
branch_labels = None
|
||||||
depends_on = None
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
def upgrade():
|
def upgrade():
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
op.create_table('mai2_score_kaleidx_scope',
|
op.create_table('mai2_score_kaleidxscope',
|
||||||
sa.Column('id', sa.Integer(), nullable=False),
|
sa.Column('id', sa.Integer(), nullable=False),
|
||||||
sa.Column('user', sa.Integer(), nullable=False),
|
sa.Column('user', sa.Integer(), nullable=False),
|
||||||
sa.Column('gateId', sa.Integer(), nullable=True),
|
sa.Column('gateId', sa.Integer(), nullable=True),
|
||||||
|
@ -41,10 +41,12 @@ def upgrade():
|
||||||
sa.UniqueConstraint('user', 'gateId', name='mai2_score_best_uk'),
|
sa.UniqueConstraint('user', 'gateId', name='mai2_score_best_uk'),
|
||||||
mysql_charset='utf8mb4'
|
mysql_charset='utf8mb4'
|
||||||
)
|
)
|
||||||
|
op.add_column('mai2_playlog', sa.Column('extBool2', sa.Boolean(), nullable=True, server_default=sa.text("NULL")))
|
||||||
# ### end Alembic commands ###
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
|
||||||
def downgrade():
|
def downgrade():
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
op.drop_table('mai2_score_kaleidx_scope')
|
op.drop_column('mai2_playlog', 'extBool2')
|
||||||
|
op.drop_table('mai2_score_kaleidxscope')
|
||||||
# ### end Alembic commands ###
|
# ### end Alembic commands ###
|
|
@ -1,28 +0,0 @@
|
||||||
"""Mai2 add PRiSM support
|
|
||||||
|
|
||||||
Revision ID: d0f1c7fa9505
|
|
||||||
Revises: 1d0014d35220
|
|
||||||
Create Date: 2025-04-02 06:37:10.657372
|
|
||||||
|
|
||||||
"""
|
|
||||||
from alembic import op
|
|
||||||
import sqlalchemy as sa
|
|
||||||
|
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
|
||||||
revision = 'd0f1c7fa9505'
|
|
||||||
down_revision = '1d0014d35220'
|
|
||||||
branch_labels = None
|
|
||||||
depends_on = None
|
|
||||||
|
|
||||||
|
|
||||||
def upgrade():
|
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
|
||||||
op.add_column('mai2_playlog', sa.Column('extBool2', sa.Boolean(), nullable=True,server_default=sa.text("NULL")))
|
|
||||||
# ### end Alembic commands ###
|
|
||||||
|
|
||||||
|
|
||||||
def downgrade():
|
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
|
||||||
op.drop_column('mai2_playlog', 'extBool2')
|
|
||||||
# ### end Alembic commands ###
|
|
|
@ -196,9 +196,9 @@ Config file is located in `config/cxb.yaml`.
|
||||||
Presents are items given to the user when they login, with a little animation (for example, the KOP song was given to the finalists as a present). To add a present, you must insert it into the `mai2_item_present` table. In that table, a NULL version means any version, a NULL user means any user, a NULL start date means always open, and a NULL end date means it never expires. Below is a list of presents one might wish to add:
|
Presents are items given to the user when they login, with a little animation (for example, the KOP song was given to the finalists as a present). To add a present, you must insert it into the `mai2_item_present` table. In that table, a NULL version means any version, a NULL user means any user, a NULL start date means always open, and a NULL end date means it never expires. Below is a list of presents one might wish to add:
|
||||||
|
|
||||||
| Game Version | Item ID | Item Kind | Item Description | Present Description |
|
| Game Version | Item ID | Item Kind | Item Description | Present Description |
|
||||||
|--------------|---------|-----------|-------------------------------------------------|------------------------------------------------|
|
|--------------|---------|----------------------|--------------------------------------------|----------------------------------------------------------------------------|
|
||||||
| BUDDiES (21) | 409505 | Icon (3) | 旅行スタンプ(月面基地) (Travel Stamp - Moon Base) | Officially obtained on the webui with a serial |
|
| BUDDiES (21) | 409505 | Icon (3) | 旅行スタンプ(月面基地) (Travel Stamp - Moon Base) | Officially obtained on the webui with a serial number, for project raputa |
|
||||||
| | | | | number, for project raputa |
|
| PRiSM (23) | 3 | KaleidxScopeKey (15) | 紫の鍵 (Purple Key) | Officially obtained on the webui with a serial number, for KaleidxScope |
|
||||||
|
|
||||||
### Versions
|
### Versions
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue