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