5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-16 02:31:41 +00:00

feat: almacenar el último commit indexado #13780

This commit is contained in:
f 2023-09-27 15:39:12 -03:00
parent 6bd62b98d6
commit 8376e663ce
No known key found for this signature in database

View file

@ -0,0 +1,8 @@
# 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