class CreatePlatforms < ActiveRecord::Migration[5.0] def change create_table :platforms do |t| t.string :name t.string :url t.text :login_info t.references :client, foreign_key: true t.timestamps end end end