class AddTimestampsToPathwrightCategory < ActiveRecord::Migration[6.0]
  def change
    add_column :pathwright_categories, :created_at, :datetime, null: false
    add_column :pathwright_categories, :updated_at, :datetime, null: false
  end
end
