Adds color attribute to conference

This commit is contained in:
Chrisbr 2014-05-28 13:40:58 +02:00
parent cd83cb2f8f
commit dc080705ae
4 changed files with 10 additions and 3 deletions

View file

@ -0,0 +1,5 @@
class AddColorToConference < ActiveRecord::Migration
def change
add_column :conferences, :color, :string, default: '#000000'
end
end