Update schema
This commit is contained in:
parent
29d574868a
commit
e0ee6f085b
1 changed files with 7 additions and 1 deletions
|
@ -593,6 +593,8 @@ ActiveRecord::Schema.define(version: 20160705163108) do
|
|||
t.datetime "updated_at"
|
||||
t.string "base_commit_sha"
|
||||
t.string "real_size"
|
||||
t.string "head_commit_sha"
|
||||
t.string "start_commit_sha"
|
||||
end
|
||||
|
||||
add_index "merge_request_diffs", ["merge_request_id"], name: "index_merge_request_diffs_on_merge_request_id", unique: true, using: :btree
|
||||
|
@ -689,10 +691,12 @@ ActiveRecord::Schema.define(version: 20160705163108) do
|
|||
t.string "line_code"
|
||||
t.string "commit_id"
|
||||
t.integer "noteable_id"
|
||||
t.boolean "system", default: false, null: false
|
||||
t.boolean "system", default: false, null: false
|
||||
t.text "st_diff"
|
||||
t.integer "updated_by_id"
|
||||
t.string "type"
|
||||
t.text "position"
|
||||
t.text "original_position"
|
||||
end
|
||||
|
||||
add_index "notes", ["author_id"], name: "index_notes_on_author_id", using: :btree
|
||||
|
@ -881,6 +885,8 @@ ActiveRecord::Schema.define(version: 20160705163108) do
|
|||
t.string "commit_id"
|
||||
t.string "reply_key", null: false
|
||||
t.string "line_code"
|
||||
t.string "note_type"
|
||||
t.text "position"
|
||||
end
|
||||
|
||||
add_index "sent_notifications", ["reply_key"], name: "index_sent_notifications_on_reply_key", unique: true, using: :btree
|
||||
|
|
Loading…
Reference in a new issue