summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-08-04 19:00:41 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-08-04 19:00:41 +0300
commite06352979de1a3344d0ab34c5f0ecf7ed73da66f (patch)
tree62c24d6e65ebba56f6b4ce0275a29d79127da989 /db
parentb99f357e96f683643b1e739b12a1ba972303d0aa (diff)
downloadgitlab-ce-e06352979de1a3344d0ab34c5f0ecf7ed73da66f.tar.gz
st_diff field for Note
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20130804151314_add_st_diff_to_note.rb5
-rw-r--r--db/schema.rb3
2 files changed, 7 insertions, 1 deletions
diff --git a/db/migrate/20130804151314_add_st_diff_to_note.rb b/db/migrate/20130804151314_add_st_diff_to_note.rb
new file mode 100644
index 00000000000..3f9abb975c3
--- /dev/null
+++ b/db/migrate/20130804151314_add_st_diff_to_note.rb
@@ -0,0 +1,5 @@
+class AddStDiffToNote < ActiveRecord::Migration
+ def change
+ add_column :notes, :st_diff, :text, :null => true
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 4ada3d07263..e80b61e0bbc 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -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"