diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-01-15 17:47:59 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-01-15 17:47:59 -0800 |
commit | 9c74a32c984d9704db7dcf20c31e19fd7f9ad176 (patch) | |
tree | e36b294f4094fe3a7581a7133ba8d7a1222ac1c7 /app/models/commit.rb | |
parent | da1d0456bdc1ba9bc7b934231a325e32c60b353c (diff) | |
download | gitlab-ci-9c74a32c984d9704db7dcf20c31e19fd7f9ad176.tar.gz |
More stability for admin/builds page
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r-- | app/models/commit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb index 5233893..4943d66 100644 --- a/app/models/commit.rb +++ b/app/models/commit.rb @@ -14,7 +14,7 @@ class Commit < ActiveRecord::Base belongs_to :project - has_many :builds + has_many :builds, dependent: :destroy has_many :jobs, through: :builds serialize :push_data |