journalduhacker/db/migrate/20170119192703_add_dragons.rb

6 lines
132 B
Ruby
Raw Normal View History

2017-05-17 10:23:25 +02:00
class AddDragons < ActiveRecord::Migration
def change
add_column :comments, :is_dragon, :boolean, :default => false
end
end