# frozen_string_literal: true # Almacenar el Ășltimo commit indexado class AddLastIndexedCommitToSites < ActiveRecord::Migration[6.1] def change add_column :sites, :last_indexed_commit, :string, null: true end end