1
有沒有辦法讓我在Rails中設置id的增量值?取代+ 1,取代+10(或者我指定的其他功能)。Set/Change Rails id自動增加值
在MySQL中有一個選項@@ auto_increment_increment。有沒有辦法通過ActiveRecord在Rails中設置?我正在與Postgres合作。
有沒有辦法讓我在Rails中設置id的增量值?取代+ 1,取代+10(或者我指定的其他功能)。Set/Change Rails id自動增加值
在MySQL中有一個選項@@ auto_increment_increment。有沒有辦法通過ActiveRecord在Rails中設置?我正在與Postgres合作。
檢查了Rails 3.x的上遷移指南:http://guides.rubyonrails.org/migrations.html
有他們硬編碼一些SQL
class SomeMigration < ActiveRecord::Migration
def up
execute <<-SQL
ALTER TABLE xxx
SQL
end
end
見這樣的例子 - http://stackoverflow.com/questions/5440401/change -autoincrement值合遷移的PostgreSQL和 - sqlite3的 – Anand 2012-01-12 12:45:06