diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-02-17 17:45:32 -0200 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-02-20 12:12:05 -0200 |
commit | 1d476b0656b3ec24e264d7a7c30bdca83704b3bd (patch) | |
tree | d1cdb1b22c0f1365efd80a0485e25b1ecfaf7735 /db | |
parent | 14fc05ebfdfb6654859ee6f57aa462420a6bcb56 (diff) | |
download | gitlab-ce-1d476b0656b3ec24e264d7a7c30bdca83704b3bd.tar.gz |
Create a pending task when a user is mentioned on a note
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20160217174422_add_note_to_tasks.rb | 5 | ||||
-rw-r--r-- | db/schema.rb | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/db/migrate/20160217174422_add_note_to_tasks.rb b/db/migrate/20160217174422_add_note_to_tasks.rb new file mode 100644 index 00000000000..da5cb2e05db --- /dev/null +++ b/db/migrate/20160217174422_add_note_to_tasks.rb @@ -0,0 +1,5 @@ +class AddNoteToTasks < ActiveRecord::Migration + def change + add_reference :tasks, :note, index: true + end +end diff --git a/db/schema.rb b/db/schema.rb index 183227a91ca..2b726d17682 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160217100506) do +ActiveRecord::Schema.define(version: 20160217174422) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -834,9 +834,11 @@ ActiveRecord::Schema.define(version: 20160217100506) do t.string "state", null: false t.datetime "created_at" t.datetime "updated_at" + t.integer "note_id" end add_index "tasks", ["author_id"], name: "index_tasks_on_author_id", using: :btree + add_index "tasks", ["note_id"], name: "index_tasks_on_note_id", using: :btree add_index "tasks", ["project_id"], name: "index_tasks_on_project_id", using: :btree add_index "tasks", ["state"], name: "index_tasks_on_state", using: :btree add_index "tasks", ["target_type", "target_id"], name: "index_tasks_on_target_type_and_target_id", using: :btree |