mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
9 lines
351 B
Ruby
9 lines
351 B
Ruby
class ChangeIdentityVerification < ActiveRecord::Migration[5.2]
|
|
def change
|
|
change_column :identity_verifications, :card_front, :string
|
|
change_column :identity_verifications, :card_back, :string
|
|
change_column :identity_verifications, :hold_card_front, :string
|
|
change_column :identity_verifications, :hold_card_back, :string
|
|
end
|
|
end
|