如何使用 Rails 5 迁移在 MySQL 中添加 JSON 列
How to add a JSON column in MySQL with Rails 5 Migration
我正在尝试通过 运行ning 在 MySQL 数据库中添加一个 json 列:
class AddStatisticsToPlayerStatistic < ActiveRecord::Migration[5.0]
def change
add_column :player_statistics, :statistics, :json
end
end
但是当我尝试 运行 rake db:migrate
时出现此错误
Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'json' at line 1: ALTER TABLE `player_statistics` ADD `statistics` json
有谁知道如何在 MySQL Ver 14.14 Distrib 5.5.53 中添加 JSON 列。正确吗?
提前致谢!
MySQL 文档说 JSON 本机数据类型从 5.7.8 开始 - json
我正在尝试通过 运行ning 在 MySQL 数据库中添加一个 json 列:
class AddStatisticsToPlayerStatistic < ActiveRecord::Migration[5.0]
def change
add_column :player_statistics, :statistics, :json
end
end
但是当我尝试 运行 rake db:migrate
时出现此错误Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'json' at line 1: ALTER TABLE `player_statistics` ADD `statistics` json
有谁知道如何在 MySQL Ver 14.14 Distrib 5.5.53 中添加 JSON 列。正确吗?
提前致谢!
MySQL 文档说 JSON 本机数据类型从 5.7.8 开始 - json