5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 06:00:48 +00:00

migraciones faltantes

This commit is contained in:
f 2022-04-23 15:06:55 -03:00
parent 30861d240e
commit 22742cf058
2 changed files with 17 additions and 0 deletions

View file

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

View file

@ -0,0 +1,9 @@
# frozen_string_literal: true
# Agregarle un nombre a la estadística
class AddNameToStats < ActiveRecord::Migration[6.1]
def change
add_column :stats, :name, :string, null: false
add_index :stats, :name, using: 'hash'
end
end