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