class CreateLegalDocuments < ActiveRecord::Migration[6.0] def change create_table :legal_documents do |t| t.string :document_type t.text :body t.references :documentable, polymorphic: true t.timestamps end end end