gitlabhq/db/migrate/20120307095918_add_author_i...

6 lines
134 B
Ruby

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