【发布时间】:2009-04-23 23:42:59
【问题描述】:
我想为 create_table rails 命令获取从 500 开始的自动递增 id 列。
我找到了如何在 sql 中设置初始 auto_increment id 值的示例:
CREATE TABLE student ( id int(2) NOT NULL auto_increment, name varchar(50) NOT NULL default '', class varchar(10) NOT NULL default '', mark int(3) NOT NULL default '0', sex varchar(6) NOT NULL default 'male', UNIQUE KEY id (id) ) auto_increment=100000 TYPE=MyISAM;
所以我查看了 Rails API 并在 create_table 方法上看到了这些选项:
The options hash can include the following keys:
:id
Whether to automatically add a primary key column. Defaults to true. Join tables for has_and_belongs_to_many should set :id => false.
:primary_key
The name of the primary key, if one is to be added automatically. Defaults to id.
:options
Any extra options you want appended to the table definition.
:temporary
Make a temporary table.
:force
Set to true to drop the table before creating it. Defaults to false.
不是我需要的……我试过了但没有成功:
:options => {:auto_increment => 500}
任何人都知道如何让这条语句的自动递增 id 列从 500 开始:
create_table :contents do |t|
t.string :type, :null => false
t.string :name, :null => false
end
【问题讨论】:
标签: sql ruby-on-rails