Skip to content

Instantly share code, notes, and snippets.

@rwehresmann
Created May 11, 2019 19:00
Show Gist options
  • Select an option

  • Save rwehresmann/e6f8319f3d8f6d2a8021cf13c885aa24 to your computer and use it in GitHub Desktop.

Select an option

Save rwehresmann/e6f8319f3d8f6d2a8021cf13c885aa24 to your computer and use it in GitHub Desktop.
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