mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 11:41:41 +00:00
8 lines
229 B
Ruby
8 lines
229 B
Ruby
# frozen_string_literal: true
|
|
|
|
# La recolección de estadísticas podría pertenecer a un sitio
|
|
class AddSiteToStats < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_belongs_to :stats, :site, index: true, null: true
|
|
end
|
|
end
|