Rails--bundle exec rake db:migrate

Posted 盖瑞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rails--bundle exec rake db:migrate相关的知识,希望对你有一定的参考价值。

--新建表:

def up
  create_table :[TABLE_NAME] do |t|
    t.column :[NUM], :integer
    t.column :[NAME], :string
    t.column :[TIME], :timestamp
    t.column :[ACTIVE], :boolean, :default => true
    # 不推荐,用task rake
    execute <<-SQL
      [SQL-1];
      [SQL-2];
    SQL
    
    t.timestamps
  end
  
  add_index :location_properties, :[NUM]
  add_index :location_properties, :[NAME] , :unique => true
  
end

def down
  drop_table :[TABLE_NAME]
end

 

--

 

以上是关于Rails--bundle exec rake db:migrate的主要内容,如果未能解决你的问题,请参考以下文章

bundle exec rake 是啥意思?

bundle exec rake assets:预编译失败,出现“意外令牌”

在 bundle exec rake assets:precompile 后 OpsWorks 部署失败

$ bundle exec rake db:reset 命令提升无法删除 db/development.sqlite3

Github 操作工作流 PG::ConnectionBad:无法连接到服务器:运行 bundle exec rake 时没有这样的文件或目录

Rails:“bundle install”由于旧的 rails 版本(3.2)而失败