aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/db/migrate/20170806125915_create_active_storage_tables.rb
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #30211 from koic/frozen_activestorageMatthew Draper2017-08-131-0/+2
|\ | | | | Use frozen string literal in Active Storage
| * Use frozen string literal in Active StorageKoichi ITO2017-08-121-0/+2
| |
* | Use `references` to respect primary key type in active storage tablesRyuta Kamizono2017-08-131-5/+3
|/ | | | | | If created active storage tables by mysql2 or postgresql adapters, a primary key is defined as a bigint. It should be used `references` to the reference columns to respect primary key type.
* Add `null: false` to Active Storage tablesRyuta Kamizono2017-08-121-10/+10
| | | | These columns aren't intended nullable.
* ActiveStorage:Add migrations per rails engine conventions (#30111)Dino Maric2017-08-081-0/+27
* Add migrations per rails engine conventions * Fix failing tests