gitlabhq/db/migrate/20120228134252_add_action_to_event.rb

6 lines
129 B
Ruby
Raw Normal View History

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