11 lines
281 B
Ruby
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
|