1
0
Fork 0

Remove unnecessary enum value

This commit is contained in:
Alex Kotov 2019-07-20 12:50:24 +05:00
parent 9960ae437e
commit c0a5e2a4ec
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
class Relationship < ApplicationRecord
enum status: %i[unrelated supporter member excluded]
enum status: %i[supporter member excluded]
################
# Associations #