Skip to content
Snippets Groups Projects

Use a separate table for storing push events

Merged Yorick Peterse requested to merge split-events-into-push-events into master
All threads resolved!
Compare and Show latest version
6 files
+ 236
9
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 11
0
@@ -6,4 +6,15 @@ class PushEvent < ActiveRecord::Base
sha_attribute :first_commit
sha_attribute :last_commit
enum action: {
created: 0,
removed: 1,
pushed: 2
}
enum ref_type: {
branch: 0,
tag: 1
}
end
Loading