mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #19806 from vircung/master
Improve documentation for uuid [ci skip]
This commit is contained in:
commit
154e13c00b
1 changed files with 23 additions and 0 deletions
|
@ -245,6 +245,7 @@ article.save!
|
|||
* [type definition](http://www.postgresql.org/docs/9.3/static/datatype-uuid.html)
|
||||
* [generator functions](http://www.postgresql.org/docs/9.3/static/uuid-ossp.html)
|
||||
|
||||
NOTE: you need to enable the `uuid-ossp` extension to use uuid.
|
||||
|
||||
```ruby
|
||||
# db/migrate/20131220144913_create_revisions.rb
|
||||
|
@ -263,6 +264,28 @@ revision = Revision.first
|
|||
revision.identifier # => "a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11"
|
||||
```
|
||||
|
||||
You can use `uuid` type to define references in migrations
|
||||
|
||||
```ruby
|
||||
# db/migrate/20150418012400_create_blog.rb
|
||||
create_table :posts, id: :uuid
|
||||
|
||||
create_table :comments, id: :uuid do |t|
|
||||
# t.belongs_to :post, type: :uuid
|
||||
t.references :post, type: :uuid
|
||||
end
|
||||
|
||||
# app/models/post.rb
|
||||
class Post < ActiveRecord::Base
|
||||
has_many :comments
|
||||
end
|
||||
|
||||
# app/models/comment.rb
|
||||
class Comment < ActiveRecord::Base
|
||||
belongs_to :post
|
||||
end
|
||||
```
|
||||
|
||||
### Bit String Types
|
||||
|
||||
* [type definition](http://www.postgresql.org/docs/9.3/static/datatype-bit.html)
|
||||
|
|
Loading…
Reference in a new issue