edit membership setting , otherpayment page

This commit is contained in:
Moe Su
2017-06-11 15:48:53 +06:30
parent 1d24099abc
commit 33cc576f1e
15 changed files with 248 additions and 215 deletions

View File

@@ -0,0 +1,17 @@
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.string :additional_parameter
t.timestamps
t.timestamps
end
end
end