add is_keynote attribute to event_types

This commit is contained in:
Stella 2014-12-07 16:52:10 +02:00 committed by Stella Rouzi
parent a8b0c28cee
commit c787190571
9 changed files with 29 additions and 13 deletions

View file

@ -0,0 +1,5 @@
class AddIsKeynoteToEventTypes < ActiveRecord::Migration
def change
add_column :event_types, :is_keynote, :boolean, default: false
end
end