gitlabhq/db/migrate/20120110180749_add_line_number_to_note.rb

6 lines
133 B
Ruby
Raw Normal View History

2012-01-10 21:08:46 +01:00
class AddLineNumberToNote < ActiveRecord::Migration
def change
add_column :notes, :line_code, :string, :null => true
end
end