Files
sx-fc/db/migrate/20170611084537_create_membership_actions.rb
2017-10-23 11:38:10 +06:30

17 lines
410 B
Ruby
Executable File

class CreateMembershipActions < ActiveRecord::Migration[5.1]
def change
create_table :membership_actions do |t|
t.string :membership_type
t.boolean :is_active
t.string :gateway_communication_type
t.string :gateway_url
t.string :auth_token
t.string :merchant_account_id
t.string :created_by
t.json :additional_parameter
t.timestamps
end
end
end