mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Use 5.2 version of ActiveRecord::Migration for Active Storage
This commit is contained in:
parent
fabac4fe02
commit
92431ea5fb
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
class CreateActiveStorageTables < ActiveRecord::Migration[5.1]
|
||||
class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :active_storage_blobs do |t|
|
||||
t.string :key, null: false
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class ActiveStorageCreateUsers < ActiveRecord::Migration[5.1]
|
||||
class ActiveStorageCreateUsers < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :users do |t|
|
||||
t.string :name
|
||||
|
|
Loading…
Reference in a new issue