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

6 lines
146 B
Ruby

class AddNoteToWithdraws < ActiveRecord::Migration[5.0]
def change
add_column :withdraws, :note, :string, limit: 256, after: :rid
end
end