5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-01 05:06:07 +00:00
panel/db/migrate/20190716202024_add_design_to_sites.rb

9 lines
187 B
Ruby
Raw Normal View History

2019-07-17 22:18:48 +00:00
# frozen_string_literal: true
# Los sitios tienen un diseño
class AddDesignToSites < ActiveRecord::Migration[5.2]
def change
add_belongs_to :sites, :design, index: true
end
end