mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 13:21:41 +00:00
9 lines
229 B
Ruby
9 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
|