20181206184313_create_companies.rb 263 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 class CreateCompanies < ActiveRecord::Migration[5.0] def change create_table :companies do |t| t.string :name, null: false t.string :subdomain, null: false t.string :api_token, null: false t.timestamps null: false end end end