Files
Dena/db/migrate/20180406185130_remove_sn_from_withdraw.rb
2026-08-13 19:50:53 +03:30

9 lines
164 B
Ruby

# encoding: UTF-8
# frozen_string_literal: true
class RemoveSnFromWithdraw < ActiveRecord::Migration[4.2]
def change
remove_column :withdraws, :sn
end
end