st_diff field for Note

This commit is contained in:
Dmitriy Zaporozhets 2013-08-04 19:00:41 +03:00
parent b99f357e96
commit e06352979d
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddStDiffToNote < ActiveRecord::Migration
def change
add_column :notes, :st_diff, :text, :null => true
end
end

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20130624162710) do
ActiveRecord::Schema.define(:version => 20130804151314) do
create_table "deploy_keys_projects", :force => true do |t|
t.integer "deploy_key_id", :null => false
@ -147,6 +147,7 @@ ActiveRecord::Schema.define(:version => 20130624162710) do
t.string "line_code"
t.string "commit_id"
t.integer "noteable_id"
t.text "st_diff"
end
add_index "notes", ["author_id"], :name => "index_notes_on_author_id"