thirteen-tien-len_classic/db/migrate/20211108045859_add_is_bot_to_player.rb

6 lines
136 B
Ruby

class AddIsBotToPlayer < ActiveRecord::Migration[5.2]
def change
add_column :players, :is_bot, :boolean, default: false
end
end