|
| 1 | +"""Init |
| 2 | +
|
| 3 | +Revision ID: 29ab561fd33d |
| 4 | +Revises: |
| 5 | +Create Date: 2021-10-12 00:09:19.054328 |
| 6 | +
|
| 7 | +""" |
| 8 | +from alembic import op |
| 9 | +import sqlalchemy as sa |
| 10 | +from core.base import Base |
| 11 | + |
| 12 | + |
| 13 | +# revision identifiers, used by Alembic. |
| 14 | +revision = '29ab561fd33d' |
| 15 | +down_revision = None |
| 16 | +branch_labels = None |
| 17 | +depends_on = None |
| 18 | + |
| 19 | + |
| 20 | +def upgrade(): |
| 21 | + # ### commands auto generated by Alembic - please adjust! ### |
| 22 | + op.create_table('categories', |
| 23 | + sa.Column('id', sa.Integer(), nullable=False), |
| 24 | + sa.Column('title', sa.String(length=100), nullable=True), |
| 25 | + sa.Column('description', sa.String(length=250), nullable=True), |
| 26 | + sa.Column('slug', sa.String(length=255), nullable=False), |
| 27 | + sa.Column('active', sa.Boolean(), nullable=True), |
| 28 | + sa.Column('created', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), |
| 29 | + sa.Column('updated', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), |
| 30 | + sa.PrimaryKeyConstraint('id') |
| 31 | + ) |
| 32 | + op.create_index(op.f('ix_categories_id'), 'categories', ['id'], unique=False) |
| 33 | + op.create_index(op.f('ix_categories_slug'), 'categories', ['slug'], unique=True) |
| 34 | + op.create_index(op.f('ix_categories_title'), 'categories', ['title'], unique=False) |
| 35 | + op.create_table('contacts', |
| 36 | + sa.Column('id', sa.Integer(), nullable=False), |
| 37 | + sa.Column('firstname', sa.String(length=100), nullable=False), |
| 38 | + sa.Column('lastname', sa.String(length=100), nullable=False), |
| 39 | + sa.Column('email', sa.String(length=255), nullable=False), |
| 40 | + sa.Column('message', sa.Text(), nullable=False), |
| 41 | + sa.Column('status', sa.Boolean(), nullable=True), |
| 42 | + sa.Column('created', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), |
| 43 | + sa.PrimaryKeyConstraint('id') |
| 44 | + ) |
| 45 | + op.create_index(op.f('ix_contacts_email'), 'contacts', ['email'], unique=False) |
| 46 | + op.create_index(op.f('ix_contacts_id'), 'contacts', ['id'], unique=False) |
| 47 | + op.create_table('users', |
| 48 | + sa.Column('id', sa.Integer(), nullable=False), |
| 49 | + sa.Column('firstname', sa.String(length=100), nullable=False), |
| 50 | + sa.Column('lastname', sa.String(length=100), nullable=False), |
| 51 | + sa.Column('username', sa.String(length=100), nullable=False), |
| 52 | + sa.Column('email', sa.String(length=255), nullable=False), |
| 53 | + sa.Column('password', sa.Text(), nullable=False), |
| 54 | + sa.Column('active', sa.Boolean(), nullable=True), |
| 55 | + sa.Column('staff', sa.Boolean(), nullable=True), |
| 56 | + sa.Column('admin', sa.Boolean(), nullable=True), |
| 57 | + sa.Column('created', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), |
| 58 | + sa.Column('updated', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), |
| 59 | + sa.PrimaryKeyConstraint('id') |
| 60 | + ) |
| 61 | + op.create_index(op.f('ix_users_email'), 'users', ['email'], unique=True) |
| 62 | + op.create_index(op.f('ix_users_id'), 'users', ['id'], unique=False) |
| 63 | + op.create_index(op.f('ix_users_username'), 'users', ['username'], unique=True) |
| 64 | + op.create_table('posts', |
| 65 | + sa.Column('id', sa.Integer(), nullable=False), |
| 66 | + sa.Column('author_id', sa.Integer(), nullable=True), |
| 67 | + sa.Column('category_id', sa.Integer(), nullable=True), |
| 68 | + sa.Column('title', sa.String(length=100), nullable=False), |
| 69 | + sa.Column('description', sa.String(length=250), nullable=True), |
| 70 | + sa.Column('intro', sa.String(length=200), nullable=True), |
| 71 | + sa.Column('content', sa.Text(), nullable=True), |
| 72 | + sa.Column('post_image', sa.Text(), nullable=True), |
| 73 | + sa.Column('slug', sa.String(length=255), nullable=False), |
| 74 | + sa.Column('read_length', sa.Integer(), nullable=True), |
| 75 | + sa.Column('view_count', sa.Integer(), nullable=True), |
| 76 | + sa.Column('active', sa.Boolean(), nullable=True), |
| 77 | + sa.Column('created', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), |
| 78 | + sa.Column('updated', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), |
| 79 | + sa.ForeignKeyConstraint(['author_id'], ['users.id'], ), |
| 80 | + sa.ForeignKeyConstraint(['category_id'], ['categories.id'], ), |
| 81 | + sa.PrimaryKeyConstraint('id') |
| 82 | + ) |
| 83 | + op.create_index(op.f('ix_posts_id'), 'posts', ['id'], unique=False) |
| 84 | + op.create_index(op.f('ix_posts_slug'), 'posts', ['slug'], unique=True) |
| 85 | + op.create_index(op.f('ix_posts_title'), 'posts', ['title'], unique=False) |
| 86 | + # ### end Alembic commands ### |
| 87 | + |
| 88 | + |
| 89 | +def downgrade(): |
| 90 | + # ### commands auto generated by Alembic - please adjust! ### |
| 91 | + op.drop_index(op.f('ix_posts_title'), table_name='posts') |
| 92 | + op.drop_index(op.f('ix_posts_slug'), table_name='posts') |
| 93 | + op.drop_index(op.f('ix_posts_id'), table_name='posts') |
| 94 | + op.drop_table('posts') |
| 95 | + op.drop_index(op.f('ix_users_username'), table_name='users') |
| 96 | + op.drop_index(op.f('ix_users_id'), table_name='users') |
| 97 | + op.drop_index(op.f('ix_users_email'), table_name='users') |
| 98 | + op.drop_table('users') |
| 99 | + op.drop_index(op.f('ix_contacts_id'), table_name='contacts') |
| 100 | + op.drop_index(op.f('ix_contacts_email'), table_name='contacts') |
| 101 | + op.drop_table('contacts') |
| 102 | + op.drop_index(op.f('ix_categories_title'), table_name='categories') |
| 103 | + op.drop_index(op.f('ix_categories_slug'), table_name='categories') |
| 104 | + op.drop_index(op.f('ix_categories_id'), table_name='categories') |
| 105 | + op.drop_table('categories') |
| 106 | + # ### end Alembic commands ### |
0 commit comments