Pearlception_Website_RoR/Pearlception/db/migrate/20170104173311_create_companies.rb
Okechi Onyeje 14778da673 set up devise for sign up and login
- currently working to add company_id field
2017-01-09 13:46:23 -05:00

10 lines
197 B
Ruby

class CreateCompanies < ActiveRecord::Migration[5.0]
def change
create_table :companies do |t|
t.string :company_name
t.string :company_token
t.timestamps
end
end
end