mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 18:26:21 +00:00
10 lines
224 B
Ruby
10 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
|