Files
codeocean/db/migrate/20140825125801_create_internal_users.rb
2021-05-14 22:03:06 +02:00

14 lines
271 B
Ruby

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