diff options
author | yhirano <yhirano@me.com> | 2017-05-02 09:14:47 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-02 02:14:47 +0200 |
commit | 298796cc7b4fdc075be659fc6aea7ab2543a0f9d (patch) | |
tree | f70f563b70284f5458c1897bacd3d8d0371a14f2 /app/models/web | |
parent | a4859446abea166ae55806169425646c1bd42f85 (diff) |
annotate models (#2697)
* add annotate to Gemfile * rails g annotate:install * configure annotate_models * add schema info to models * fix rubocop to add frozen_string_literal
Diffstat (limited to 'app/models/web')
-rw-r--r-- | app/models/web/setting.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/models/web/setting.rb b/app/models/web/setting.rb index 3d601189b..04a049523 100644 --- a/app/models/web/setting.rb +++ b/app/models/web/setting.rb @@ -1,4 +1,14 @@ # frozen_string_literal: true +# == Schema Information +# +# Table name: web_settings +# +# id :integer not null, primary key +# user_id :integer +# data :json +# created_at :datetime not null +# updated_at :datetime not null +# class Web::Setting < ApplicationRecord belongs_to :user |