houdini/db/migrate/20170805180558_add_custom_field_joins_backup_table.rb
2019-08-02 19:07:29 +02:00

14 lines
401 B
Ruby

# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
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