aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/mysql2/json_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add a native JSON data type support in MySQLRyuta Kamizono2015-08-181-0/+172
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