main
1# frozen_string_literal: true
2
3class CreateUsers < ActiveRecord::Migration[5.1]
4 def change
5 create_table :users, id: :uuid do |t|
6 t.string :email
7 t.string :password_digest
8 t.timestamps null: false
9 end
10 end
11end