问题描述
我在数据迁移建表时出错:Mysql::Error:Can't create table'.store_developmentgoals.frm'<error:121>CREATE TABLE 'goals'<'id' int<11> DEFAULT NULL auto_increment PRIMARY KEY, 'title' varchar<255> DEFAULT NULL, 'description' text DEFAULT NULL > ENGINE=InnoDB我数据迁移的代码是:class CreateGoals < ActiveRecord::Migration def self.up create_table :goals do |t| t.column :title, :string t.column :description, :text end end def self.down drop_table :goals endendgoogle了好久都不知是哪里出错,望指教!谢谢!问题补充:重启电脑还是不行,我查了语法没错,配置没错,都不知错在哪里了。
解决方案
估计是文件读写的IO错误,你重启电脑再试试.
时间: 2024-10-28 07:54:30