5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 19:16:23 +00:00
panel/db/migrate/20230927153926_add_last_indexed_commit_to_sites.rb

9 lines
223 B
Ruby
Raw Normal View History

# 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