mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Remove frozen_string_literal comment from activestorage's migration
The activestorage's migration is used as template for apps Related to #30348
This commit is contained in:
parent
3580edc9fa
commit
43f452f23b
2 changed files with 1 additions and 2 deletions
|
@ -88,6 +88,7 @@ Style/FrozenStringLiteralComment:
|
|||
- 'actionview/test/**/*.ruby'
|
||||
- 'actionpack/test/**/*.builder'
|
||||
- 'actionpack/test/**/*.ruby'
|
||||
- 'activestorage/db/migrate/**/*.rb'
|
||||
|
||||
# Use `foo {}` not `foo{}`.
|
||||
Layout/SpaceBeforeBlockBraces:
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class CreateActiveStorageTables < ActiveRecord::Migration[5.1]
|
||||
def change
|
||||
create_table :active_storage_blobs do |t|
|
||||
|
|
Loading…
Reference in a new issue