0

我正在尝试创建一个包含 3 列 url、价格和时间戳的表...我尝试了“更改”和“向上”

class Shp < ActiveRecord::Base
  def change
    create_table :shps do |t|
      t.string :url
      t.float :price
      t.timestamps
    end
  end
end

运行 db:migrate 似乎什么都不做,就像我做的那样

ActiveRecord::Base.connection.column_names("shps")

我得到一个只有默认列的表。

=> [#<ActiveRecord::ConnectionAdapters::SQLiteColumn:0x8fc8a34 @name="id", @sql_type="INTEGER", @null=false, @limit=nil, @precision=nil, @scale=nil, @type=:integer, @default=nil, @primary=nil, @coder=nil>, #<ActiveRecord::ConnectionAdapters::SQLiteColumn:0x8fc878c @name="created_at", @sql_type="datetime", @null=false, @limit=nil, @precision=nil, @scale=nil, @type=:datetime, @default=nil, @primary=nil, @coder=nil>, #<ActiveRecord::ConnectionAdapters::SQLiteColumn:0x8fc8444 @name="updated_at", @sql_type="datetime", @null=false, @limit=nil, @precision=nil, @scale=nil, @type=:datetime, @default=nil, @primary=nil, @coder=nil>]
4

2 回答 2

1

这应该有效:

应用程序/模型/shp.rb:

class Shp < ActiveRecord::Base
  set_table_name "shps"
end

db/migrate/2013xxxxxxxxx_create_shps.rb:

class CreateShps < ActiveRecord::Migration
  def change
    create_table(:shps) do |t|
      t.string :url
      t.float :price
      t.timestamps
    end
  end
end

高温高压

于 2013-07-03T20:21:22.050 回答
1

迁移类应该继承自ActiveRecord::Migration而不是ActiveRecord::Base. 它们也应该放置在适当的目录 ( db/migrate) 中,并且它们的文件名应该包含适当的时间戳。

要在模型之间生成迁移,您应该在控制台中输入:

rails g model Shp url:string price:float

并运行迁移:

bundle exec rake db:migrate

顺便说一句,为了您自己的方便,请尝试使类名更具描述性。

于 2013-07-03T20:19:26.080 回答