
- Set up project structure and dependencies - Create database models for users, posts, comments, and tags - Set up Alembic for database migrations - Implement user authentication (register, login) - Create CRUD endpoints for blog posts, comments, and tags - Add health check endpoint - Set up proper error handling - Update README with project details and setup instructions
99 lines
3.7 KiB
Python
99 lines
3.7 KiB
Python
"""Initial migration
|
|
|
|
Revision ID: 0001
|
|
Revises:
|
|
Create Date: 2023-11-01
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '0001'
|
|
down_revision = None
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# Create users table
|
|
op.create_table(
|
|
'users',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('email', sa.String(), nullable=False),
|
|
sa.Column('username', sa.String(), nullable=False),
|
|
sa.Column('hashed_password', sa.String(), nullable=False),
|
|
sa.Column('is_active', sa.Boolean(), nullable=True),
|
|
sa.Column('created_at', sa.DateTime(), nullable=True),
|
|
sa.Column('updated_at', sa.DateTime(), nullable=True),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
)
|
|
op.create_index(op.f('ix_users_email'), 'users', ['email'], unique=True)
|
|
op.create_index(op.f('ix_users_id'), 'users', ['id'], unique=False)
|
|
op.create_index(op.f('ix_users_username'), 'users', ['username'], unique=True)
|
|
|
|
# Create posts table
|
|
op.create_table(
|
|
'posts',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('title', sa.String(length=255), nullable=False),
|
|
sa.Column('content', sa.Text(), nullable=False),
|
|
sa.Column('published', sa.Boolean(), nullable=True),
|
|
sa.Column('author_id', sa.Integer(), nullable=False),
|
|
sa.Column('created_at', sa.DateTime(), nullable=True),
|
|
sa.Column('updated_at', sa.DateTime(), nullable=True),
|
|
sa.ForeignKeyConstraint(['author_id'], ['users.id'], ondelete='CASCADE'),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
)
|
|
op.create_index(op.f('ix_posts_id'), 'posts', ['id'], unique=False)
|
|
|
|
# Create tags table
|
|
op.create_table(
|
|
'tags',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('name', sa.String(length=50), nullable=False),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
)
|
|
op.create_index(op.f('ix_tags_id'), 'tags', ['id'], unique=False)
|
|
op.create_index(op.f('ix_tags_name'), 'tags', ['name'], unique=True)
|
|
|
|
# Create comments table
|
|
op.create_table(
|
|
'comments',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('content', sa.Text(), nullable=False),
|
|
sa.Column('author_id', sa.Integer(), nullable=False),
|
|
sa.Column('post_id', sa.Integer(), nullable=False),
|
|
sa.Column('created_at', sa.DateTime(), nullable=True),
|
|
sa.Column('updated_at', sa.DateTime(), nullable=True),
|
|
sa.ForeignKeyConstraint(['author_id'], ['users.id'], ondelete='CASCADE'),
|
|
sa.ForeignKeyConstraint(['post_id'], ['posts.id'], ondelete='CASCADE'),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
)
|
|
op.create_index(op.f('ix_comments_id'), 'comments', ['id'], unique=False)
|
|
|
|
# Create post_tag association table
|
|
op.create_table(
|
|
'post_tag',
|
|
sa.Column('post_id', sa.Integer(), nullable=False),
|
|
sa.Column('tag_id', sa.Integer(), nullable=False),
|
|
sa.ForeignKeyConstraint(['post_id'], ['posts.id'], ondelete='CASCADE'),
|
|
sa.ForeignKeyConstraint(['tag_id'], ['tags.id'], ondelete='CASCADE'),
|
|
sa.PrimaryKeyConstraint('post_id', 'tag_id'),
|
|
)
|
|
|
|
|
|
def downgrade():
|
|
op.drop_table('post_tag')
|
|
op.drop_index(op.f('ix_comments_id'), table_name='comments')
|
|
op.drop_table('comments')
|
|
op.drop_index(op.f('ix_tags_name'), table_name='tags')
|
|
op.drop_index(op.f('ix_tags_id'), table_name='tags')
|
|
op.drop_table('tags')
|
|
op.drop_index(op.f('ix_posts_id'), table_name='posts')
|
|
op.drop_table('posts')
|
|
op.drop_index(op.f('ix_users_username'), table_name='users')
|
|
op.drop_index(op.f('ix_users_id'), table_name='users')
|
|
op.drop_index(op.f('ix_users_email'), table_name='users')
|
|
op.drop_table('users') |