diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2016-02-29 20:09:55 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2016-03-04 23:25:50 +0900 |
commit | a449b073430b28644b4e2a5e6a1b5615c1b2d67b (patch) | |
tree | 10f601e682d70fcf7666bff1c920f1012f26890f /activesupport/lib/active_support/testing/method_call_assertions.rb | |
parent | c577657f6de64b743b12a21108dc9cc5cfc35098 (diff) | |
download | rails-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 'activesupport/lib/active_support/testing/method_call_assertions.rb')
0 files changed, 0 insertions, 0 deletions