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

9 lines
179 B
Ruby

# encoding: UTF-8
# frozen_string_literal: true
class AddBidToWithdraws < ActiveRecord::Migration[4.2]
def change
add_column :withdraws, :bid, :string, limit: 64
end
end