gitlabhq/db/migrate/20120307095918_add_author_id_to_event.rb

6 lines
134 B
Ruby

class AddAuthorIdToEvent < ActiveRecord::Migration
def change
add_column :events, :author_id, :integer, :null => true
end
end