mirror of
https://github.com/simple-login/app.git
synced 2025-02-24 15:53:22 +08:00
add User.include_website_in_one_click_alias column
This commit is contained in:
parent
2fad942c95
commit
293cc74c53
2 changed files with 39 additions and 0 deletions
|
@ -392,6 +392,16 @@ class User(Base, ModelMixin, UserMixin, PasswordOracle):
|
|||
sa.Boolean, default=False, nullable=False, server_default="0"
|
||||
)
|
||||
|
||||
# automatically include the website name when user creates an alias via the SimpleLogin icon in the email field
|
||||
include_website_in_one_click_alias = sa.Column(
|
||||
sa.Boolean,
|
||||
# new user will have this option turned on automatically
|
||||
default=True,
|
||||
nullable=False,
|
||||
# old user will have this option turned off
|
||||
server_default="0",
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
def subdomain_is_available():
|
||||
return SLDomain.filter_by(can_use_subdomain=True).count() > 0
|
||||
|
|
29
migrations/versions/2021_111209_5639ad89ee50_.py
Normal file
29
migrations/versions/2021_111209_5639ad89ee50_.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
"""empty message
|
||||
|
||||
Revision ID: 5639ad89ee50
|
||||
Revises: 1076b5795b08
|
||||
Create Date: 2021-11-12 09:40:58.618886
|
||||
|
||||
"""
|
||||
import sqlalchemy_utils
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '5639ad89ee50'
|
||||
down_revision = '1076b5795b08'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('users', sa.Column('include_website_in_one_click_alias', sa.Boolean(), server_default='0', nullable=False))
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('users', 'include_website_in_one_click_alias')
|
||||
# ### end Alembic commands ###
|
Loading…
Reference in a new issue