Rails 4 能原生态的支持Postgres 中的UUID(Universally Unique Identifier,可通用的唯一标识符)类型。在此,我将向你描述如何在不用手工修改任何Rails代码的情况下,用它来生成UUID。
首先,你需要激活Postgres的扩展插件‘uuid-ossp':
1
2
3
4
5
6
7
8
9
|
class CreateUuidPsqlExtension < ActiveRecord::Migration
def self .up
execute "CREATE EXTENSION \"uuid-ossp\";"
end
def self .down
execute "DROP EXTENSION \"uuid-ossp\";"
end
end
|
你可以用UUID作为一个ID来进行替换:
1
2
3
4
|
create_table :translations , id: :uuid do |t|
t.string :title
t.timestamps
end
|
在此例中,翻译表会把一个UUID作为ID来自动生成它。Postgresq的uuid-ossp扩展插件所用算法和生成UUID的算法是不同的。Rails 4缺省使用的是v4算法. 你可以在这里: http://www.postgresql.org/docs/current/static/uuid-ossp.html 看到更多有关这些算法的细节。
然而,有时候你不想用UUID作为ID来进行替换。那么,你可以另起一列来放置它:
1
2
3
4
5
6
7
8
9
|
class AddUuidToModelsThatNeedIt < ActiveRecord::Migration
def up
add_column :translations , :uuid , :uuid
end
def down
remove_column :invoices , :uuid
end
end
|
这会创建一个放置UUID的列,但这个UUID不会自动生成。你不得不在Rails中用SecureRandom来生成它。但是,我们认为这是一个典型的数据库职责行为。值得庆幸的是,add_column中的缺省选项会帮我们实现这种行为:
1
2
3
4
5
6
7
8
9
|
class AddUuidToModelsThatNeedIt < ActiveRecord::Migration
def up
add_column :translations , :uuid , :uuid , :default => "uuid_generate_v4()"
end
def down
remove_column :invoices , :uuid
end
end
|
现在,UUID能被自动创建了。同理也适用于已有记录!