Files
astuto/db/migrate/20190918150418_add_order_to_boards.rb

6 lines
145 B
Ruby
Raw Normal View History

2019-09-18 21:00:38 +02:00
class AddOrderToBoards < ActiveRecord::Migration[6.0]
def change
add_column :boards, :order, :integer, null: false, default: 999
end
end