feat: add full project - backend, frontend, docker, specs and configs

This commit is contained in:
MatheusAlves96 2026-04-20 23:59:45 -03:00
parent b77c7d5a01
commit e6cb06255b
24489 changed files with 61341 additions and 36 deletions

View file

@ -0,0 +1,28 @@
"""add iptu_anual to properties
Revision ID: f1a2b3c4d5e6
Revises: e9f0a1b2c3d4
Create Date: 2026-04-14 00:01:00.000000
"""
from alembic import op
import sqlalchemy as sa
revision = "f1a2b3c4d5e6"
down_revision = "e9f0a1b2c3d4"
branch_labels = None
depends_on = None
def upgrade():
with op.batch_alter_table("properties", schema=None) as batch_op:
batch_op.add_column(
sa.Column("iptu_anual", sa.Numeric(precision=12, scale=2), nullable=True)
)
def downgrade():
with op.batch_alter_table("properties", schema=None) as batch_op:
batch_op.drop_column("iptu_anual")