Inherit models from ApplicationRecord instead of ActiveRecord::Base.

This commit is contained in:
evazion
2017-06-14 21:27:53 -05:00
parent 56b1651cd4
commit c1834ab8dd
54 changed files with 56 additions and 53 deletions

View File

@@ -1,6 +1,6 @@
require 'ostruct'
class FavoriteGroup < ActiveRecord::Base
class FavoriteGroup < ApplicationRecord
validates_uniqueness_of :name, :case_sensitive => false, :scope => :creator_id
validates_format_of :name, :with => /\A[^,]+\Z/, :message => "cannot have commas"
belongs_to :creator, :class_name => "User"