mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:21:42 +00:00
9 lines
224 B
Ruby
9 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Agrega íconos a las licencias
|
|
class AddIconsToLicenses < ActiveRecord::Migration[5.2]
|
|
def change
|
|
# XXX: Cambiar por ActiveStorage?
|
|
add_column :licencias, :icons, :string
|
|
end
|
|
end
|