aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/json.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add a native JSON data type support in MySQLRyuta Kamizono2015-08-181-0/+31
As of MySQL 5.7.8, MySQL supports a native JSON data type. Example: create_table :json_data_type do |t| t.json :settings end