gitlabhq/db/migrate/20120110180749_add_line_number_to_note.rb
2012-01-10 22:08:46 +02:00

6 lines
133 B
Ruby

class AddLineNumberToNote < ActiveRecord::Migration
def change
add_column :notes, :line_code, :string, :null => true
end
end