diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-31 15:40:27 -0200 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-11-17 15:10:12 -0200 |
commit | 4fcae04f7bb4823d740a18419f21b8d154b4ef89 (patch) | |
tree | 48bc20ed1e63a2faae77754ed602a4aa2b2e1ffe /db | |
parent | 8762db3b8f5f45bb46de2d0fb0d8e4fd6bc04058 (diff) | |
download | gitlab-ce-4fcae04f7bb4823d740a18419f21b8d154b4ef89.tar.gz |
Add project_id to subscriptions
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20161031171301_add_project_id_to_subscriptions.rb | 14 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/db/migrate/20161031171301_add_project_id_to_subscriptions.rb b/db/migrate/20161031171301_add_project_id_to_subscriptions.rb new file mode 100644 index 00000000000..97534679b59 --- /dev/null +++ b/db/migrate/20161031171301_add_project_id_to_subscriptions.rb @@ -0,0 +1,14 @@ +class AddProjectIdToSubscriptions < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + def up + add_column :subscriptions, :project_id, :integer + add_foreign_key :subscriptions, :projects, column: :project_id, on_delete: :cascade + end + + def down + remove_column :subscriptions, :project_id + end +end diff --git a/db/schema.rb b/db/schema.rb index ed4dfc786f6..fcdb5ab7dde 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1052,6 +1052,7 @@ ActiveRecord::Schema.define(version: 20161109150329) do t.boolean "subscribed" t.datetime "created_at" t.datetime "updated_at" + t.integer "project_id" end add_index "subscriptions", ["subscribable_id", "subscribable_type", "user_id"], name: "subscriptions_user_id_and_ref_fields", unique: true, using: :btree @@ -1250,6 +1251,7 @@ ActiveRecord::Schema.define(version: 20161109150329) do add_foreign_key "personal_access_tokens", "users" add_foreign_key "protected_branch_merge_access_levels", "protected_branches" add_foreign_key "protected_branch_push_access_levels", "protected_branches" + add_foreign_key "subscriptions", "projects", on_delete: :cascade add_foreign_key "trending_projects", "projects", on_delete: :cascade add_foreign_key "u2f_registrations", "users" end |