mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:11:42 +00:00
9 lines
214 B
Ruby
9 lines
214 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Algunos diseños están deshabilitados
|
||
|
class AddDisabledToDesigns < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :designs, :disabled, :boolean, default: false
|
||
|
end
|
||
|
end
|