You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
285 B
13 lines
285 B
2 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateBulkImportRows < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
create_table :bulk_import_rows do |t|
|
||
|
t.references :bulk_import, null: false, foreign_key: { on_delete: :cascade }
|
||
|
t.jsonb :data
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|