1
0
Fork 0
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:
bogdanvlviv 2017-08-20 17:41:49 +03:00
parent fabac4fe02
commit 92431ea5fb
No known key found for this signature in database
GPG key ID: E4ACD76A6DB6DFDD
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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