diff --git a/backend/app/alembic/versions/01b284ceabf9_update_course_string_max_length.py b/backend/app/alembic/versions/01b284ceabf9_update_course_string_max_length.py deleted file mode 100644 index d8bcd67..0000000 --- a/backend/app/alembic/versions/01b284ceabf9_update_course_string_max_length.py +++ /dev/null @@ -1,51 +0,0 @@ -"""update course string max length - -Revision ID: 01b284ceabf9 -Revises: 71a20fad83f9 -Create Date: 2024-10-01 12:59:07.159639 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '01b284ceabf9' -down_revision = '71a20fad83f9' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('course', 'long_description', - existing_type=sa.VARCHAR(length=2048), - type_=sqlmodel.sql.sqltypes.AutoString(length=8192), - existing_nullable=False) - op.alter_column('course', 'information', - existing_type=sa.VARCHAR(length=1024), - type_=sqlmodel.sql.sqltypes.AutoString(length=8192), - existing_nullable=False) - op.alter_column('course', 'contant', - existing_type=sa.VARCHAR(length=1024), - type_=sqlmodel.sql.sqltypes.AutoString(length=8192), - existing_nullable=False) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('course', 'contant', - existing_type=sqlmodel.sql.sqltypes.AutoString(length=8192), - type_=sa.VARCHAR(length=1024), - existing_nullable=False) - op.alter_column('course', 'information', - existing_type=sqlmodel.sql.sqltypes.AutoString(length=8192), - type_=sa.VARCHAR(length=1024), - existing_nullable=False) - op.alter_column('course', 'long_description', - existing_type=sqlmodel.sql.sqltypes.AutoString(length=8192), - type_=sa.VARCHAR(length=2048), - existing_nullable=False) - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/16f759612879_start.py b/backend/app/alembic/versions/16f759612879_start.py new file mode 100644 index 0000000..025fbb4 --- /dev/null +++ b/backend/app/alembic/versions/16f759612879_start.py @@ -0,0 +1,124 @@ +"""start + +Revision ID: 16f759612879 +Revises: +Create Date: 2024-10-07 16:27:42.427904 + +""" +from alembic import op +import sqlalchemy as sa +import sqlmodel.sql.sqltypes + + +# revision identifiers, used by Alembic. +revision = '16f759612879' +down_revision = None +branch_labels = None +depends_on = None + + +def upgrade(): + # ### commands auto generated by Alembic - please adjust! ### + op.create_table('aboutus', + sa.Column('description', sqlmodel.sql.sqltypes.AutoString(length=1024), nullable=False), + sa.Column('image', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=True), + sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('index', sa.Integer(), nullable=False), + sa.Column('id', sa.Uuid(), nullable=False), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('course', + sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('sort_description', sqlmodel.sql.sqltypes.AutoString(length=32768), nullable=False), + sa.Column('long_description', sqlmodel.sql.sqltypes.AutoString(length=32768), nullable=False), + sa.Column('information', sqlmodel.sql.sqltypes.AutoString(length=32768), nullable=False), + sa.Column('contant', sqlmodel.sql.sqltypes.AutoString(length=32768), nullable=False), + sa.Column('remark', sqlmodel.sql.sqltypes.AutoString(length=32768), nullable=False), + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('created_at', sa.DateTime(), nullable=False), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('message', + sa.Column('name', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('phone', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('email', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('message', sqlmodel.sql.sqltypes.AutoString(length=1024), nullable=False), + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('created_at', sa.DateTime(), nullable=False), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('setting', + sa.Column('address', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('google_map_api_key', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('latitude', sa.Float(), nullable=False), + sa.Column('longitude', sa.Float(), nullable=False), + sa.Column('phone', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('email', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('facebook', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('instagram', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('youtube', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('youtube_link', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('whatsapp', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('id', sa.Uuid(), nullable=False), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('user', + sa.Column('email', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('is_active', sa.Boolean(), nullable=False), + sa.Column('is_superuser', sa.Boolean(), nullable=False), + sa.Column('full_name', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=True), + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('hashed_password', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.PrimaryKeyConstraint('id') + ) + op.create_index(op.f('ix_user_email'), 'user', ['email'], unique=True) + op.create_table('image', + sa.Column('image', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('index', sa.Integer(), nullable=False), + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('course_id', sa.Uuid(), nullable=False), + sa.ForeignKeyConstraint(['course_id'], ['course.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('info_image', + sa.Column('image', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('index', sa.Integer(), nullable=False), + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('course_id', sa.Uuid(), nullable=False), + sa.ForeignKeyConstraint(['course_id'], ['course.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('item', + sa.Column('description', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=True), + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('owner_id', sa.Uuid(), nullable=False), + sa.ForeignKeyConstraint(['owner_id'], ['user.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('schedule', + sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('info1', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('info2', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), + sa.Column('date', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('course_id', sa.Uuid(), nullable=False), + sa.ForeignKeyConstraint(['course_id'], ['course.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id') + ) + # ### end Alembic commands ### + + +def downgrade(): + # ### commands auto generated by Alembic - please adjust! ### + op.drop_table('schedule') + op.drop_table('item') + op.drop_table('info_image') + op.drop_table('image') + op.drop_index(op.f('ix_user_email'), table_name='user') + op.drop_table('user') + op.drop_table('setting') + op.drop_table('message') + op.drop_table('course') + op.drop_table('aboutus') + # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/1a31ce608336_add_cascade_delete_relationships.py b/backend/app/alembic/versions/1a31ce608336_add_cascade_delete_relationships.py deleted file mode 100644 index 10e47a1..0000000 --- a/backend/app/alembic/versions/1a31ce608336_add_cascade_delete_relationships.py +++ /dev/null @@ -1,37 +0,0 @@ -"""Add cascade delete relationships - -Revision ID: 1a31ce608336 -Revises: d98dd8ec85a3 -Create Date: 2024-07-31 22:24:34.447891 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '1a31ce608336' -down_revision = 'd98dd8ec85a3' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('item', 'owner_id', - existing_type=sa.UUID(), - nullable=False) - op.drop_constraint('item_owner_id_fkey', 'item', type_='foreignkey') - op.create_foreign_key(None, 'item', 'user', ['owner_id'], ['id'], ondelete='CASCADE') - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.drop_constraint(None, 'item', type_='foreignkey') - op.create_foreign_key('item_owner_id_fkey', 'item', 'user', ['owner_id'], ['id']) - op.alter_column('item', 'owner_id', - existing_type=sa.UUID(), - nullable=True) - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/218f011a4c51_create_aboutus_table.py b/backend/app/alembic/versions/218f011a4c51_create_aboutus_table.py deleted file mode 100644 index 506ccec..0000000 --- a/backend/app/alembic/versions/218f011a4c51_create_aboutus_table.py +++ /dev/null @@ -1,34 +0,0 @@ -"""create aboutUs table - -Revision ID: 218f011a4c51 -Revises: b7b90ee242cd -Create Date: 2024-08-21 12:20:44.062095 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '218f011a4c51' -down_revision = 'b7b90ee242cd' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.create_table('aboutus', - sa.Column('description', sqlmodel.sql.sqltypes.AutoString(length=1024), nullable=False), - sa.Column('image', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=True), - sa.Column('id', sa.Uuid(), nullable=False), - sa.PrimaryKeyConstraint('id') - ) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.drop_table('aboutus') - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/347e865b364a_updated_schedule_table.py b/backend/app/alembic/versions/347e865b364a_updated_schedule_table.py deleted file mode 100644 index 404ec1c..0000000 --- a/backend/app/alembic/versions/347e865b364a_updated_schedule_table.py +++ /dev/null @@ -1,29 +0,0 @@ -"""Updated schedule table - -Revision ID: 347e865b364a -Revises: a500b4a1bd39 -Create Date: 2024-08-27 12:56:39.771118 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '347e865b364a' -down_revision = 'a500b4a1bd39' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/454cc1340f73_create_message_table.py b/backend/app/alembic/versions/454cc1340f73_create_message_table.py deleted file mode 100644 index 0513287..0000000 --- a/backend/app/alembic/versions/454cc1340f73_create_message_table.py +++ /dev/null @@ -1,37 +0,0 @@ -"""create message table - -Revision ID: 454cc1340f73 -Revises: 1a31ce608336 -Create Date: 2024-08-19 12:45:07.178487 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '454cc1340f73' -down_revision = '1a31ce608336' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.create_table('message', - sa.Column('name', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('phone', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('email', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('message', sqlmodel.sql.sqltypes.AutoString(length=1024), nullable=False), - sa.Column('id', sa.Uuid(), nullable=False), - sa.Column('created_at', sa.DateTime(), nullable=False), - sa.PrimaryKeyConstraint('id') - ) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.drop_table('message') - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/691c39dbac74_changed_date.py b/backend/app/alembic/versions/691c39dbac74_changed_date.py deleted file mode 100644 index 8d199a1..0000000 --- a/backend/app/alembic/versions/691c39dbac74_changed_date.py +++ /dev/null @@ -1,29 +0,0 @@ -"""changed date - -Revision ID: 691c39dbac74 -Revises: 94afd163eba3 -Create Date: 2024-10-07 14:38:57.274294 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '691c39dbac74' -down_revision = '94afd163eba3' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/71a20fad83f9_updated_aboutus_table.py b/backend/app/alembic/versions/71a20fad83f9_updated_aboutus_table.py deleted file mode 100644 index cdf3ef9..0000000 --- a/backend/app/alembic/versions/71a20fad83f9_updated_aboutus_table.py +++ /dev/null @@ -1,29 +0,0 @@ -"""Updated aboutUs table - -Revision ID: 71a20fad83f9 -Revises: 347e865b364a -Create Date: 2024-09-02 11:36:20.635091 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '71a20fad83f9' -down_revision = '347e865b364a' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.add_column('aboutus', sa.Column('index', sa.Integer(), nullable=False)) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.drop_column('aboutus', 'index') - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/8e38378fd2f3_update_course_string_max_length.py b/backend/app/alembic/versions/8e38378fd2f3_update_course_string_max_length.py deleted file mode 100644 index ee4c7d8..0000000 --- a/backend/app/alembic/versions/8e38378fd2f3_update_course_string_max_length.py +++ /dev/null @@ -1,67 +0,0 @@ -"""update course string max length - -Revision ID: 8e38378fd2f3 -Revises: 01b284ceabf9 -Create Date: 2024-10-01 13:11:16.073772 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '8e38378fd2f3' -down_revision = '01b284ceabf9' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('course', 'sort_description', - existing_type=sa.VARCHAR(length=1024), - type_=sqlmodel.sql.sqltypes.AutoString(length=32768), - existing_nullable=False) - op.alter_column('course', 'long_description', - existing_type=sa.VARCHAR(length=8192), - type_=sqlmodel.sql.sqltypes.AutoString(length=32768), - existing_nullable=False) - op.alter_column('course', 'information', - existing_type=sa.VARCHAR(length=8192), - type_=sqlmodel.sql.sqltypes.AutoString(length=32768), - existing_nullable=False) - op.alter_column('course', 'contant', - existing_type=sa.VARCHAR(length=8192), - type_=sqlmodel.sql.sqltypes.AutoString(length=32768), - existing_nullable=False) - op.alter_column('course', 'remark', - existing_type=sa.VARCHAR(length=512), - type_=sqlmodel.sql.sqltypes.AutoString(length=32768), - existing_nullable=False) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('course', 'remark', - existing_type=sqlmodel.sql.sqltypes.AutoString(length=32768), - type_=sa.VARCHAR(length=512), - existing_nullable=False) - op.alter_column('course', 'contant', - existing_type=sqlmodel.sql.sqltypes.AutoString(length=32768), - type_=sa.VARCHAR(length=8192), - existing_nullable=False) - op.alter_column('course', 'information', - existing_type=sqlmodel.sql.sqltypes.AutoString(length=32768), - type_=sa.VARCHAR(length=8192), - existing_nullable=False) - op.alter_column('course', 'long_description', - existing_type=sqlmodel.sql.sqltypes.AutoString(length=32768), - type_=sa.VARCHAR(length=8192), - existing_nullable=False) - op.alter_column('course', 'sort_description', - existing_type=sqlmodel.sql.sqltypes.AutoString(length=32768), - type_=sa.VARCHAR(length=1024), - existing_nullable=False) - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/8ed37bb65379_added_course_table.py b/backend/app/alembic/versions/8ed37bb65379_added_course_table.py deleted file mode 100644 index 1062a2f..0000000 --- a/backend/app/alembic/versions/8ed37bb65379_added_course_table.py +++ /dev/null @@ -1,68 +0,0 @@ -"""Added course table - -Revision ID: 8ed37bb65379 -Revises: 218f011a4c51 -Create Date: 2024-08-26 12:39:43.429154 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '8ed37bb65379' -down_revision = '218f011a4c51' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.create_table('course', - sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('sort_description', sqlmodel.sql.sqltypes.AutoString(length=1024), nullable=False), - sa.Column('long_description', sqlmodel.sql.sqltypes.AutoString(length=2048), nullable=False), - sa.Column('information', sqlmodel.sql.sqltypes.AutoString(length=1024), nullable=False), - sa.Column('contant', sqlmodel.sql.sqltypes.AutoString(length=1024), nullable=False), - sa.Column('remark', sqlmodel.sql.sqltypes.AutoString(length=512), nullable=False), - sa.Column('id', sa.Uuid(), nullable=False), - sa.Column('created_at', sa.DateTime(), nullable=False), - sa.PrimaryKeyConstraint('id') - ) - op.create_table('image', - sa.Column('image', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('index', sa.Integer(), nullable=False), - sa.Column('id', sa.Uuid(), nullable=False), - sa.Column('course_id', sa.Uuid(), nullable=False), - sa.ForeignKeyConstraint(['course_id'], ['course.id'], ondelete='CASCADE'), - sa.PrimaryKeyConstraint('id') - ) - op.create_table('info_image', - sa.Column('image', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('index', sa.Integer(), nullable=False), - sa.Column('id', sa.Uuid(), nullable=False), - sa.Column('course_id', sa.Uuid(), nullable=False), - sa.ForeignKeyConstraint(['course_id'], ['course.id'], ondelete='CASCADE'), - sa.PrimaryKeyConstraint('id') - ) - op.create_table('schedule', - sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('info1', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('info2', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('date', sqlmodel.sql.sqltypes.AutoString(), nullable=False), - sa.Column('id', sa.Uuid(), nullable=False), - sa.Column('course_id', sa.Uuid(), nullable=False), - sa.ForeignKeyConstraint(['course_id'], ['course.id'], ondelete='CASCADE'), - sa.PrimaryKeyConstraint('id') - ) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.drop_table('schedule') - op.drop_table('info_image') - op.drop_table('image') - op.drop_table('course') - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/94afd163eba3_add_title_in_aboutus.py b/backend/app/alembic/versions/94afd163eba3_add_title_in_aboutus.py deleted file mode 100644 index 386abc8..0000000 --- a/backend/app/alembic/versions/94afd163eba3_add_title_in_aboutus.py +++ /dev/null @@ -1,29 +0,0 @@ -"""add title in aboutUs - -Revision ID: 94afd163eba3 -Revises: 8e38378fd2f3 -Create Date: 2024-10-05 10:26:21.093141 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '94afd163eba3' -down_revision = '8e38378fd2f3' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.add_column('aboutus', sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False)) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.drop_column('aboutus', 'title') - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/9c0a54914c78_add_max_length_for_string_varchar_.py b/backend/app/alembic/versions/9c0a54914c78_add_max_length_for_string_varchar_.py deleted file mode 100755 index 78a4177..0000000 --- a/backend/app/alembic/versions/9c0a54914c78_add_max_length_for_string_varchar_.py +++ /dev/null @@ -1,69 +0,0 @@ -"""Add max length for string(varchar) fields in User and Items models - -Revision ID: 9c0a54914c78 -Revises: e2412789c190 -Create Date: 2024-06-17 14:42:44.639457 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = '9c0a54914c78' -down_revision = 'e2412789c190' -branch_labels = None -depends_on = None - - -def upgrade(): - # Adjust the length of the email field in the User table - op.alter_column('user', 'email', - existing_type=sa.String(), - type_=sa.String(length=255), - existing_nullable=False) - - # Adjust the length of the full_name field in the User table - op.alter_column('user', 'full_name', - existing_type=sa.String(), - type_=sa.String(length=255), - existing_nullable=True) - - # Adjust the length of the title field in the Item table - op.alter_column('item', 'title', - existing_type=sa.String(), - type_=sa.String(length=255), - existing_nullable=False) - - # Adjust the length of the description field in the Item table - op.alter_column('item', 'description', - existing_type=sa.String(), - type_=sa.String(length=255), - existing_nullable=True) - - -def downgrade(): - # Revert the length of the email field in the User table - op.alter_column('user', 'email', - existing_type=sa.String(length=255), - type_=sa.String(), - existing_nullable=False) - - # Revert the length of the full_name field in the User table - op.alter_column('user', 'full_name', - existing_type=sa.String(length=255), - type_=sa.String(), - existing_nullable=True) - - # Revert the length of the title field in the Item table - op.alter_column('item', 'title', - existing_type=sa.String(length=255), - type_=sa.String(), - existing_nullable=False) - - # Revert the length of the description field in the Item table - op.alter_column('item', 'description', - existing_type=sa.String(length=255), - type_=sa.String(), - existing_nullable=True) diff --git a/backend/app/alembic/versions/a500b4a1bd39_updated_schedule_table.py b/backend/app/alembic/versions/a500b4a1bd39_updated_schedule_table.py deleted file mode 100644 index ceb8d92..0000000 --- a/backend/app/alembic/versions/a500b4a1bd39_updated_schedule_table.py +++ /dev/null @@ -1,29 +0,0 @@ -"""Updated schedule table - -Revision ID: a500b4a1bd39 -Revises: f9ec5094fc7d -Create Date: 2024-08-27 12:54:01.335930 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = 'a500b4a1bd39' -down_revision = 'f9ec5094fc7d' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/b5de6bf93e0c_updated_message_table_columns.py b/backend/app/alembic/versions/b5de6bf93e0c_updated_message_table_columns.py deleted file mode 100644 index f7efe38..0000000 --- a/backend/app/alembic/versions/b5de6bf93e0c_updated_message_table_columns.py +++ /dev/null @@ -1,29 +0,0 @@ -"""updated message table columns - -Revision ID: b5de6bf93e0c -Revises: 454cc1340f73 -Create Date: 2024-08-19 12:54:54.781300 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = 'b5de6bf93e0c' -down_revision = '454cc1340f73' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/b7b90ee242cd_create_setting_table.py b/backend/app/alembic/versions/b7b90ee242cd_create_setting_table.py deleted file mode 100644 index c18b021..0000000 --- a/backend/app/alembic/versions/b7b90ee242cd_create_setting_table.py +++ /dev/null @@ -1,43 +0,0 @@ -"""create setting table - -Revision ID: b7b90ee242cd -Revises: b5de6bf93e0c -Create Date: 2024-08-20 02:56:05.226249 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = 'b7b90ee242cd' -down_revision = 'b5de6bf93e0c' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.create_table('setting', - sa.Column('address', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('google_map_api_key', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('latitude', sa.Float(), nullable=False), - sa.Column('longitude', sa.Float(), nullable=False), - sa.Column('phone', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('email', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('facebook', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('instagram', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('youtube', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('youtube_link', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('whatsapp', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False), - sa.Column('id', sa.Uuid(), nullable=False), - sa.PrimaryKeyConstraint('id') - ) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.drop_table('setting') - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/cda666d703f3_updated_schedule_table.py b/backend/app/alembic/versions/cda666d703f3_updated_schedule_table.py deleted file mode 100644 index a08528f..0000000 --- a/backend/app/alembic/versions/cda666d703f3_updated_schedule_table.py +++ /dev/null @@ -1,35 +0,0 @@ -"""Updated schedule table - -Revision ID: cda666d703f3 -Revises: 8ed37bb65379 -Create Date: 2024-08-27 12:39:09.900385 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = 'cda666d703f3' -down_revision = '8ed37bb65379' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('schedule', 'date', - existing_type=sa.VARCHAR(), - type_=sa.DateTime(), - existing_nullable=False) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('schedule', 'date', - existing_type=sa.DateTime(), - type_=sa.VARCHAR(), - existing_nullable=False) - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/d98dd8ec85a3_edit_replace_id_integers_in_all_models_.py b/backend/app/alembic/versions/d98dd8ec85a3_edit_replace_id_integers_in_all_models_.py deleted file mode 100755 index 37af1fa..0000000 --- a/backend/app/alembic/versions/d98dd8ec85a3_edit_replace_id_integers_in_all_models_.py +++ /dev/null @@ -1,90 +0,0 @@ -"""Edit replace id integers in all models to use UUID instead - -Revision ID: d98dd8ec85a3 -Revises: 9c0a54914c78 -Create Date: 2024-07-19 04:08:04.000976 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes -from sqlalchemy.dialects import postgresql - - -# revision identifiers, used by Alembic. -revision = 'd98dd8ec85a3' -down_revision = '9c0a54914c78' -branch_labels = None -depends_on = None - - -def upgrade(): - # Ensure uuid-ossp extension is available - op.execute('CREATE EXTENSION IF NOT EXISTS "uuid-ossp"') - - # Create a new UUID column with a default UUID value - op.add_column('user', sa.Column('new_id', postgresql.UUID(as_uuid=True), default=sa.text('uuid_generate_v4()'))) - op.add_column('item', sa.Column('new_id', postgresql.UUID(as_uuid=True), default=sa.text('uuid_generate_v4()'))) - op.add_column('item', sa.Column('new_owner_id', postgresql.UUID(as_uuid=True), nullable=True)) - - # Populate the new columns with UUIDs - op.execute('UPDATE "user" SET new_id = uuid_generate_v4()') - op.execute('UPDATE item SET new_id = uuid_generate_v4()') - op.execute('UPDATE item SET new_owner_id = (SELECT new_id FROM "user" WHERE "user".id = item.owner_id)') - - # Set the new_id as not nullable - op.alter_column('user', 'new_id', nullable=False) - op.alter_column('item', 'new_id', nullable=False) - - # Drop old columns and rename new columns - op.drop_constraint('item_owner_id_fkey', 'item', type_='foreignkey') - op.drop_column('item', 'owner_id') - op.alter_column('item', 'new_owner_id', new_column_name='owner_id') - - op.drop_column('user', 'id') - op.alter_column('user', 'new_id', new_column_name='id') - - op.drop_column('item', 'id') - op.alter_column('item', 'new_id', new_column_name='id') - - # Create primary key constraint - op.create_primary_key('user_pkey', 'user', ['id']) - op.create_primary_key('item_pkey', 'item', ['id']) - - # Recreate foreign key constraint - op.create_foreign_key('item_owner_id_fkey', 'item', 'user', ['owner_id'], ['id']) - -def downgrade(): - # Reverse the upgrade process - op.add_column('user', sa.Column('old_id', sa.Integer, autoincrement=True)) - op.add_column('item', sa.Column('old_id', sa.Integer, autoincrement=True)) - op.add_column('item', sa.Column('old_owner_id', sa.Integer, nullable=True)) - - # Populate the old columns with default values - # Generate sequences for the integer IDs if not exist - op.execute('CREATE SEQUENCE IF NOT EXISTS user_id_seq AS INTEGER OWNED BY "user".old_id') - op.execute('CREATE SEQUENCE IF NOT EXISTS item_id_seq AS INTEGER OWNED BY item.old_id') - - op.execute('SELECT setval(\'user_id_seq\', COALESCE((SELECT MAX(old_id) + 1 FROM "user"), 1), false)') - op.execute('SELECT setval(\'item_id_seq\', COALESCE((SELECT MAX(old_id) + 1 FROM item), 1), false)') - - op.execute('UPDATE "user" SET old_id = nextval(\'user_id_seq\')') - op.execute('UPDATE item SET old_id = nextval(\'item_id_seq\'), old_owner_id = (SELECT old_id FROM "user" WHERE "user".id = item.owner_id)') - - # Drop new columns and rename old columns back - op.drop_constraint('item_owner_id_fkey', 'item', type_='foreignkey') - op.drop_column('item', 'owner_id') - op.alter_column('item', 'old_owner_id', new_column_name='owner_id') - - op.drop_column('user', 'id') - op.alter_column('user', 'old_id', new_column_name='id') - - op.drop_column('item', 'id') - op.alter_column('item', 'old_id', new_column_name='id') - - # Create primary key constraint - op.create_primary_key('user_pkey', 'user', ['id']) - op.create_primary_key('item_pkey', 'item', ['id']) - - # Recreate foreign key constraint - op.create_foreign_key('item_owner_id_fkey', 'item', 'user', ['owner_id'], ['id']) diff --git a/backend/app/alembic/versions/e2412789c190_initialize_models.py b/backend/app/alembic/versions/e2412789c190_initialize_models.py deleted file mode 100644 index 7529ea9..0000000 --- a/backend/app/alembic/versions/e2412789c190_initialize_models.py +++ /dev/null @@ -1,54 +0,0 @@ -"""Initialize models - -Revision ID: e2412789c190 -Revises: -Create Date: 2023-11-24 22:55:43.195942 - -""" -import sqlalchemy as sa -import sqlmodel.sql.sqltypes -from alembic import op - -# revision identifiers, used by Alembic. -revision = "e2412789c190" -down_revision = None -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.create_table( - "user", - sa.Column("email", sqlmodel.sql.sqltypes.AutoString(), nullable=False), - sa.Column("is_active", sa.Boolean(), nullable=False), - sa.Column("is_superuser", sa.Boolean(), nullable=False), - sa.Column("full_name", sqlmodel.sql.sqltypes.AutoString(), nullable=True), - sa.Column("id", sa.Integer(), nullable=False), - sa.Column( - "hashed_password", sqlmodel.sql.sqltypes.AutoString(), nullable=False - ), - sa.PrimaryKeyConstraint("id"), - ) - op.create_index(op.f("ix_user_email"), "user", ["email"], unique=True) - op.create_table( - "item", - sa.Column("description", sqlmodel.sql.sqltypes.AutoString(), nullable=True), - sa.Column("id", sa.Integer(), nullable=False), - sa.Column("title", sqlmodel.sql.sqltypes.AutoString(), nullable=False), - sa.Column("owner_id", sa.Integer(), nullable=False), - sa.ForeignKeyConstraint( - ["owner_id"], - ["user.id"], - ), - sa.PrimaryKeyConstraint("id"), - ) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.drop_table("item") - op.drop_index(op.f("ix_user_email"), table_name="user") - op.drop_table("user") - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/e6b42c5752d5_changed_all_date_to_string.py b/backend/app/alembic/versions/e6b42c5752d5_changed_all_date_to_string.py deleted file mode 100644 index a98b79f..0000000 --- a/backend/app/alembic/versions/e6b42c5752d5_changed_all_date_to_string.py +++ /dev/null @@ -1,43 +0,0 @@ -"""changed all date to string - -Revision ID: e6b42c5752d5 -Revises: 691c39dbac74 -Create Date: 2024-10-07 14:52:05.314791 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes -from sqlalchemy.dialects import postgresql - -# revision identifiers, used by Alembic. -revision = 'e6b42c5752d5' -down_revision = '691c39dbac74' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('course', 'created_at', - existing_type=postgresql.TIMESTAMP(), - type_=sqlmodel.sql.sqltypes.AutoString(), - existing_nullable=False) - op.alter_column('message', 'created_at', - existing_type=postgresql.TIMESTAMP(), - type_=sqlmodel.sql.sqltypes.AutoString(), - existing_nullable=False) - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.alter_column('message', 'created_at', - existing_type=sqlmodel.sql.sqltypes.AutoString(), - type_=postgresql.TIMESTAMP(), - existing_nullable=False) - op.alter_column('course', 'created_at', - existing_type=sqlmodel.sql.sqltypes.AutoString(), - type_=postgresql.TIMESTAMP(), - existing_nullable=False) - # ### end Alembic commands ### diff --git a/backend/app/alembic/versions/f9ec5094fc7d_updated_schedule_table.py b/backend/app/alembic/versions/f9ec5094fc7d_updated_schedule_table.py deleted file mode 100644 index 22e34db..0000000 --- a/backend/app/alembic/versions/f9ec5094fc7d_updated_schedule_table.py +++ /dev/null @@ -1,29 +0,0 @@ -"""Updated schedule table - -Revision ID: f9ec5094fc7d -Revises: cda666d703f3 -Create Date: 2024-08-27 12:47:55.741431 - -""" -from alembic import op -import sqlalchemy as sa -import sqlmodel.sql.sqltypes - - -# revision identifiers, used by Alembic. -revision = 'f9ec5094fc7d' -down_revision = 'cda666d703f3' -branch_labels = None -depends_on = None - - -def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### - - -def downgrade(): - # ### commands auto generated by Alembic - please adjust! ### - pass - # ### end Alembic commands ### diff --git a/backend/app/models.py b/backend/app/models.py index d11bdfe..d3fc7ca 100644 --- a/backend/app/models.py +++ b/backend/app/models.py @@ -124,7 +124,7 @@ class MessageBase(SQLModel): class Message(MessageBase, table=True): id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True) - created_at: str = Field(default_factory=datetime.now) + created_at: datetime = Field(default_factory=datetime.utcnow) class MessageCreate(MessageBase): pass @@ -201,7 +201,7 @@ class CourseUpdate(CourseBase): class Course(CourseBase, table=True): id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True) - created_at: str = Field(default_factory=datetime.now) + created_at: datetime = Field(default_factory=datetime.utcnow) images: list["Image"] = Relationship(back_populates="course", cascade_delete=True) info_images: list["Info_Image"] = Relationship(back_populates="course", cascade_delete=True) schedule: list["Schedule"] = Relationship(back_populates="course", cascade_delete=True)