14 lines
278 B
Ruby
14 lines
278 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateExternalUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :external_users do |t|
|
|
t.belongs_to :consumer
|
|
t.string :email
|
|
t.string :external_id
|
|
t.string :name
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|