Files
astuto/db/migrate/20190918150418_add_order_to_boards.rb
2019-09-18 21:00:38 +02:00

6 lines
145 B
Ruby

class AddOrderToBoards < ActiveRecord::Migration[6.0]
def change
add_column :boards, :order, :integer, null: false, default: 999
end
end