st_diff field for Note
This commit is contained in:
parent
b99f357e96
commit
e06352979d
2 changed files with 7 additions and 1 deletions
5
db/migrate/20130804151314_add_st_diff_to_note.rb
Normal file
5
db/migrate/20130804151314_add_st_diff_to_note.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddStDiffToNote < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :notes, :st_diff, :text, :null => true
|
||||
end
|
||||
end
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue