diff options
author | hellekin <hellekin@cepheide.org> | 2020-10-08 17:53:48 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2020-10-08 17:53:48 +0200 |
commit | e161729c3b6f297e07c0ae1796afa28826da58fe (patch) | |
tree | c385147a2f3810ed49895a5ed76195c2dd1d41ae /app/models/section.rb | |
parent | 52f87943b4a56e880e4964bd2e2a3cafab20a0d8 (diff) | |
download | incommon-map-e161729c3b6f297e07c0ae1796afa28826da58fe.tar.gz |
Fix typo
Diffstat (limited to 'app/models/section.rb')
-rw-r--r-- | app/models/section.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/section.rb b/app/models/section.rb index 670c543..0a1fbf2 100644 --- a/app/models/section.rb +++ b/app/models/section.rb @@ -5,6 +5,6 @@ class Section < ApplicationRecord acts_as_list column: :rank, scope: :category validates :name, - uniqueness: { scope: category_id }, + uniqueness: { scope: :category_id }, length: 3..64 end |