14 lines
412 B
Ruby
14 lines
412 B
Ruby
class CreateCardExceptionItems < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :card_exception_items do |t|
|
|
t.string :field_name
|
|
t.string :field_value
|
|
t.belongs_to :card_exception, null: false, foreign_key: true
|
|
t.belongs_to :card_logo_file, null: true, foreign_key: true
|
|
t.belongs_to :card_provider, null: true, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|