aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/store.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-02-29 20:09:55 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-03-04 23:25:50 +0900
commita449b073430b28644b4e2a5e6a1b5615c1b2d67b (patch)
tree10f601e682d70fcf7666bff1c920f1012f26890f /activerecord/lib/active_record/store.rb
parentc577657f6de64b743b12a21108dc9cc5cfc35098 (diff)
downloadrails-a449b073430b28644b4e2a5e6a1b5615c1b2d67b.tar.gz
rails-a449b073430b28644b4e2a5e6a1b5615c1b2d67b.tar.bz2
rails-a449b073430b28644b4e2a5e6a1b5615c1b2d67b.zip
Fix bigserial appears with limit 8 for schema dumper
Before: ```ruby create_table "postgresql_big_serials", force: :cascade do |t| t.bigserial "seq", limit: 8, null: false end ``` After: ```ruby create_table "postgresql_big_serials", force: :cascade do |t| t.bigserial "seq", null: false end ```
Diffstat (limited to 'activerecord/lib/active_record/store.rb')
0 files changed, 0 insertions, 0 deletions