diff --git a/migrations/versions/ef6a275f8079_.py b/migrations/versions/ef6a275f8079_.py
index 0371f1b297fa24b77930f5e33c493a17df00d1f1..56fc6469424d70d337e90d6340c1dcef2ea74a0f 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 ###