2
0

Remove deprecated Import model (#34371)

This commit is contained in:
Matt Jankowski
2025-04-10 08:49:24 -04:00
committed by GitHub
parent e74d682b21
commit 4c2f64907b
13 changed files with 13 additions and 565 deletions

View File

@@ -0,0 +1,11 @@
# frozen_string_literal: true
class DropImports < ActiveRecord::Migration[7.1]
def up
drop_table :imports
end
def down
raise ActiveRecord::IrreversibleMigration
end
end