mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 11:51:42 +00:00
9 lines
240 B
Ruby
9 lines
240 B
Ruby
# 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
|