aboutsummaryrefslogtreecommitdiff
path: root/migrations/versions/2a5604bed382_add_string_user_external_auth.py
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-06-16 21:16:22 -0400
committerB. Stack <bgstack15@gmail.com>2023-06-24 08:22:59 -0400
commit7f49f9b59a0290aaa02effd7c44254ac797e23ee (patch)
tree55aaeb2e9db9dfc26879c4300fb0139699b570a9 /migrations/versions/2a5604bed382_add_string_user_external_auth.py
parentWIP: initial ldap support (diff)
downloadnewspipe-7f49f9b59a0290aaa02effd7c44254ac797e23ee.tar.gz
newspipe-7f49f9b59a0290aaa02effd7c44254ac797e23ee.tar.bz2
newspipe-7f49f9b59a0290aaa02effd7c44254ac797e23ee.zip
WIP: add db string user.external_auth
Diffstat (limited to 'migrations/versions/2a5604bed382_add_string_user_external_auth.py')
-rw-r--r--migrations/versions/2a5604bed382_add_string_user_external_auth.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/migrations/versions/2a5604bed382_add_string_user_external_auth.py b/migrations/versions/2a5604bed382_add_string_user_external_auth.py
new file mode 100644
index 00000000..ee284a1d
--- /dev/null
+++ b/migrations/versions/2a5604bed382_add_string_user_external_auth.py
@@ -0,0 +1,24 @@
+"""add_string_user_external_auth
+
+Revision ID: 2a5604bed382
+Revises: bdd38bd755cb
+Create Date: 2023-06-17 15:30:40.434393
+
+"""
+
+# revision identifiers, used by Alembic.
+revision = '2a5604bed382'
+down_revision = 'bdd38bd755cb'
+branch_labels = None
+depends_on = None
+
+from alembic import op
+import sqlalchemy as sa
+
+
+def upgrade():
+ op.add_column('user', sa.Column('external_auth', sa.String(), nullable=True))
+
+
+def downgrade():
+ op.drop_column('user', 'external_auth')
bgstack15