aboutsummaryrefslogtreecommitdiffstats
path: root/test/database/create_users_migration.rb
blob: 15be1938a9e80217c537630432a169a7a7358552 (plain) (blame)
1
2
3
4
5
6
7
class ActiveStorage::CreateUsers < ActiveRecord::Migration[5.1]
  def change
    create_table :users do |t|
      t.string :name
    end
  end
end