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

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