Method: Lockbox::Generators::AuditsGenerator#data_type
- Defined in:
- lib/generators/lockbox/audits_generator.rb
#data_type ⇒ Object
18 19 20 21 22 23 24 25 26 27 |
# File 'lib/generators/lockbox/audits_generator.rb', line 18 def data_type case adapter when /postg/i # postgres, postgis "jsonb" when /mysql/i "json" else "text" end end |