Tinker
Resources
Agent logs
Agent memories
Agent sessions
Agent terminal logs
Agents
Comments
Epics
Projects
Proposals
Tickets
Avo user
Resources
Agent logs
Agent memories
Agent sessions
Agent terminal logs
Agents
Comments
Epics
Projects
Proposals
Tickets
Avo user
Home
Epics
Drop artifacts and code_diffs database tables
Edit
Drop artifacts and code_diffs database tables
Cancel
Save
Title
*
Project
*
Choose an option
alpha
tinker
Create new project
Description
Drop the unused `artifacts` and `code_diffs` database tables that were left behind in ticket #58. ## Problem Ticket #58 removed the Artifact and CodeDiff models, controllers, and MCP tools, but the actual database tables were NOT dropped. This leaves: - Unused tables in schema - Confusion for future developers - Database bloat ## Changes Required **Create migration:** `db/migrate/TIMESTAMP_drop_artifacts_and_code_diffs_tables.rb` ```ruby class DropArtifactsAndCodeDiffsTables < ActiveRecord::Migration[8.1] def change drop_table :artifacts, if_exists: true drop_table :code_diffs, if_exists: true end end ``` ## Acceptance Criteria - Migration created to drop both tables - `db/schema.rb` no longer references `artifacts` or `code_diffs` - `rails db:migrate` runs successfully - Test suite still passes after migration ## Files to Create/Modify - **New:** `db/migrate/XXX_drop_artifacts_and_code_diffs_tables.rb` - **Modified:** `db/schema.rb` (via migration)
Avo
· © 2026 AvoHQ ·
v3.27.0
Close modal
Are you sure?
Yes, I'm sure
No, cancel