Add 'revision' attribute to Conference, managed by an observer

This commit is contained in:
Ancor Gonzalez Sosa 2013-07-08 10:03:03 +02:00
parent 27017a4823
commit d648ab7cb5
4 changed files with 34 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddRevisionToConference < ActiveRecord::Migration
def change
add_column :conferences, :revision, :integer
end
end