5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-30 06:16:06 +00:00
panel/db/migrate/20190717214308_add_disabled_to_designs.rb

9 lines
214 B
Ruby
Raw Normal View History

2019-07-17 22:18:48 +00:00
# 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