class CreateKnowledgePointContainers < ActiveRecord::Migration[5.2] def change create_table :knowledge_point_containers do |t| t.integer :container_id t.string :container_type t.references :knowledge_point, foreign_key: true t.timestamps end end end