db: add table article
This commit is contained in:
32
migrations/versions/dfad2ce9d3b7_add_table_article.py
Normal file
32
migrations/versions/dfad2ce9d3b7_add_table_article.py
Normal file
@ -0,0 +1,32 @@
|
||||
"""add table article
|
||||
|
||||
Revision ID: dfad2ce9d3b7
|
||||
Revises: fc8b7693c66b
|
||||
Create Date: 2026-02-15 15:09:51.788382
|
||||
|
||||
"""
|
||||
from typing import Sequence, Union
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision: str = 'dfad2ce9d3b7'
|
||||
down_revision: Union[str, Sequence[str], None] = 'fc8b7693c66b'
|
||||
branch_labels: Union[str, Sequence[str], None] = None
|
||||
depends_on: Union[str, Sequence[str], None] = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
"""Upgrade schema."""
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
pass
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
"""Downgrade schema."""
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
pass
|
||||
# ### end Alembic commands ###
|
||||
Reference in New Issue
Block a user