Files
codeocean/db/migrate/20140825125801_create_internal_users.rb

12 lines
235 B
Ruby

class CreateInternalUsers < ActiveRecord::Migration
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