"""Initial database schema with all core tables. Revision ID: 001_initial_schema Revises: Create Date: 2025-11-12 01:20:00 """ from collections.abc import Sequence import sqlalchemy as sa from alembic import op # revision identifiers, used by Alembic. revision: str = "001_initial_schema" down_revision: str | Sequence[str] | None = None branch_labels: str | Sequence[str] | None = None depends_on: str | Sequence[str] | None = None def upgrade() -> None: """Create all tables for CleverAgents.""" # Create projects table op.create_table( "projects", sa.Column("id", sa.Integer(), nullable=False), sa.Column("name", sa.String(length=255), nullable=False), sa.Column("path", sa.String(length=1024), nullable=False), sa.Column("settings", sa.JSON(), nullable=True), sa.Column("created_at", sa.DateTime(), nullable=False), sa.Column("updated_at", sa.DateTime(), nullable=False), sa.Column("current_plan_id", sa.Integer(), nullable=True), sa.PrimaryKeyConstraint("id"), sa.UniqueConstraint("name"), ) op.create_index(op.f("ix_projects_name"), "projects", ["name"], unique=False) # Create plans table op.create_table( "plans", sa.Column("id", sa.Integer(), nullable=False), sa.Column("project_id", sa.Integer(), nullable=False), sa.Column("name", sa.String(length=255), nullable=False), sa.Column("prompt", sa.Text(), nullable=False), sa.Column("status", sa.String(length=50), nullable=False), sa.Column("current", sa.Boolean(), nullable=False), sa.Column("created_at", sa.DateTime(), nullable=False), sa.Column("updated_at", sa.DateTime(), nullable=False), sa.Column("build_started_at", sa.DateTime(), nullable=True), sa.Column("build_completed_at", sa.DateTime(), nullable=True), sa.Column("model_used", sa.String(length=255), nullable=True), sa.Column("token_count", sa.Integer(), nullable=True), sa.Column("error_message", sa.Text(), nullable=True), sa.Column("applied_at", sa.DateTime(), nullable=True), sa.Column("files_created", sa.Integer(), nullable=True), sa.Column("files_modified", sa.Integer(), nullable=True), sa.Column("files_deleted", sa.Integer(), nullable=True), sa.ForeignKeyConstraint( ["project_id"], ["projects.id"], ), sa.PrimaryKeyConstraint("id"), sa.UniqueConstraint("project_id", "name"), ) op.create_index(op.f("ix_plans_current"), "plans", ["current"], unique=False) op.create_index(op.f("ix_plans_project_id"), "plans", ["project_id"], unique=False) op.create_index(op.f("ix_plans_status"), "plans", ["status"], unique=False) # Create contexts table op.create_table( "contexts", sa.Column("id", sa.Integer(), nullable=False), sa.Column("plan_id", sa.Integer(), nullable=False), sa.Column("type", sa.String(length=50), nullable=False), sa.Column("path", sa.String(length=1024), nullable=False), sa.Column("content", sa.Text(), nullable=True), sa.Column("file_hash", sa.String(length=64), nullable=True), sa.Column("size", sa.Integer(), nullable=False), sa.Column("added_at", sa.DateTime(), nullable=False), sa.ForeignKeyConstraint( ["plan_id"], ["plans.id"], ), sa.PrimaryKeyConstraint("id"), sa.UniqueConstraint("plan_id", "path"), ) op.create_index(op.f("ix_contexts_plan_id"), "contexts", ["plan_id"], unique=False) # Create changes table op.create_table( "changes", sa.Column("id", sa.Integer(), nullable=False), sa.Column("plan_id", sa.Integer(), nullable=False), sa.Column("file_path", sa.String(length=1024), nullable=False), sa.Column("operation", sa.String(length=50), nullable=False), sa.Column("original_content", sa.Text(), nullable=True), sa.Column("new_content", sa.Text(), nullable=True), sa.Column("new_path", sa.String(length=1024), nullable=True), sa.Column("applied", sa.Boolean(), nullable=False), sa.Column("applied_at", sa.DateTime(), nullable=True), sa.Column("created_at", sa.DateTime(), nullable=False), sa.ForeignKeyConstraint( ["plan_id"], ["plans.id"], ), sa.PrimaryKeyConstraint("id"), ) op.create_index(op.f("ix_changes_applied"), "changes", ["applied"], unique=False) op.create_index(op.f("ix_changes_plan_id"), "changes", ["plan_id"], unique=False) def downgrade() -> None: """Drop all tables.""" op.drop_index(op.f("ix_changes_plan_id"), table_name="changes") op.drop_index(op.f("ix_changes_applied"), table_name="changes") op.drop_table("changes") op.drop_index(op.f("ix_contexts_plan_id"), table_name="contexts") op.drop_table("contexts") op.drop_index(op.f("ix_plans_status"), table_name="plans") op.drop_index(op.f("ix_plans_project_id"), table_name="plans") op.drop_index(op.f("ix_plans_current"), table_name="plans") op.drop_table("plans") op.drop_index(op.f("ix_projects_name"), table_name="projects") op.drop_table("projects")