houdini/db/migrate/20170805180558_add_custom_field_joins_backup_table.rb

11 lines
281 B
Ruby

class AddCustomFieldJoinsBackupTable < ActiveRecord::Migration
def change
create_table :custom_field_joins_backup do |t|
t.integer 'custom_field_master_id'
t.integer 'supporter_id'
t.text 'metadata'
t.text 'value'
t.timestamps
end
end
end