Remove old migration 001_create_documents.rb
https://claude.ai/code/session_018Ym45siELMvsBQj4w9QAXf
change
commit 45d3ba187cf965285990f934b547e9d415dc4874
author Alpha Chen <alpha@kejadlen.dev>
date
parent f0bf06f0
diff --git a/db/migrate/001_create_documents.rb b/db/migrate/001_create_documents.rb
deleted file mode 100644
index 29268a3..0000000
--- a/db/migrate/001_create_documents.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-Sequel.migration do
-  change do
-    create_table(:documents) do
-      primary_key :id
-      String :path, null: false
-      String :kind, null: false
-      DateTime :received_at, null: false
-      DateTime :created_at, null: false
-    end
-  end
-end