34 lines
988 B
Python
34 lines
988 B
Python
"""create products table
|
|
|
|
Revision ID: 2b9e68d80af4
|
|
Revises: 0001
|
|
Create Date: 2023-05-30 15:17:09.710252
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects.postgresql import UUID
|
|
from sqlalchemy.sql import func
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '2b9e68d80af4'
|
|
down_revision = '0001'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
op.create_table(
|
|
'products',
|
|
sa.Column('id', UUID(as_uuid=True), primary_key=True, nullable=False),
|
|
sa.Column('name', sa.String, nullable=False),
|
|
sa.Column('description', sa.Text, nullable=True),
|
|
sa.Column('price', sa.Float, nullable=False),
|
|
sa.Column('stock_quantity', sa.Integer, nullable=False),
|
|
sa.Column('created_at', sa.DateTime, server_default=func.now(), nullable=False),
|
|
sa.Column('updated_at', sa.DateTime, server_default=func.now(), onupdate=func.now(), nullable=False)
|
|
)
|
|
|
|
|
|
def downgrade():
|
|
op.drop_table('products') |