aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/database/create_users_migration.rb
blob: fdba87cacfa4cce1ecb28bfd353b71ea49a326a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ActiveStorageCreateUsers < ActiveRecord::Migration[5.2]
  def change
    create_table :users do |t|
      t.string :name
    end
  end
end