# frozen_string_literal: true class CreateUsers < ActiveRecord::Migration[4.2] def change create_table :users do |t| t.belongs_to :consumer t.string :email t.string :external_id t.string :name t.timestamps end end end