Created
May 11, 2019 19:00
-
-
Save rwehresmann/e6f8319f3d8f6d2a8021cf13c885aa24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CreateUsers < ActiveRecord::Migration[5.2] | |
| def change | |
| create_table :users do |t| | |
| t.string :auth0_uid, null: false | |
| t.string :email, null: false | |
| t.timestamps | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment