blob: c2a918900df71905ba7a1a0cb78eeb4ea1853ad2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | class CreateSimpleImporters < ActiveRecord::Migration
  def change
    create_table :simple_importers do |t|
      t.string :configuration_name
      t.string :filepath
      t.string :status
      t.json :journal
    end
  end
end
 |