mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:31:42 +00:00
9 lines
187 B
Ruby
9 lines
187 B
Ruby
|
# 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
|