Remove old migration 002_add_name_to_documents.rb
https://claude.ai/code/session_018Ym45siELMvsBQj4w9QAXf
change
commit 32c3d55eec018fef64c63aefd577b1fc68629da4
author Alpha Chen <alpha@kejadlen.dev>
date
parent 45d3ba18
diff --git a/db/migrate/002_add_name_to_documents.rb b/db/migrate/002_add_name_to_documents.rb
deleted file mode 100644
index 6074e76..0000000
--- a/db/migrate/002_add_name_to_documents.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# frozen_string_literal: true
-
-Sequel.migration do
-  change do
-    alter_table(:documents) do
-      add_column :name, String
-    end
-  end
-end