From 91f38a47136ff9ebc7d6832311665c6cd8e9d77c Mon Sep 17 00:00:00 2001
From: Inga Kirschnick <inga.kirschnick@uni-bielefeld.de>
Date: Mon, 5 Dec 2022 09:50:42 +0100
Subject: [PATCH] update migrations script

---
 migrations/versions/ef6a275f8079_.py | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/migrations/versions/ef6a275f8079_.py b/migrations/versions/ef6a275f8079_.py
index 0371f1b2..56fc6469 100644
--- a/migrations/versions/ef6a275f8079_.py
+++ b/migrations/versions/ef6a275f8079_.py
@@ -1,4 +1,4 @@
-"""empty message
+"""Add avatar table and conncect it to users
 
 Revision ID: ef6a275f8079
 Revises: 4820fa2e3ee2
@@ -9,7 +9,6 @@ from alembic import op
 import sqlalchemy as sa
 
 
-# revision identifiers, used by Alembic.
 revision = 'ef6a275f8079'
 down_revision = '4820fa2e3ee2'
 branch_labels = None
@@ -17,7 +16,6 @@ depends_on = None
 
 
 def upgrade():
-    # ### commands auto generated by Alembic - please adjust! ###
     op.create_table('avatars',
     sa.Column('creation_date', sa.DateTime(), nullable=True),
     sa.Column('filename', sa.String(length=255), nullable=True),
@@ -27,10 +25,7 @@ def upgrade():
     sa.ForeignKeyConstraint(['user_id'], ['users.id'], ),
     sa.PrimaryKeyConstraint('id')
     )
-    # ### end Alembic commands ###
 
 
 def downgrade():
-    # ### commands auto generated by Alembic - please adjust! ###
     op.drop_table('avatars')
-    # ### end Alembic commands ###
-- 
GitLab