class CreateResearchDocuments < ActiveRecord::Migration[7.0]
  def change
    create_table :research_documents do |t|
      t.references :respondent_category, null: false, foreign_key: true
      t.string :document_file_name
      t.string :document_content_type
      t.integer :document_file_size
      t.datetime :document_updated_at

      t.timestamps
    end
  end
end
