mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:31:41 +00:00
16 lines
353 B
Ruby
16 lines
353 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Crea la tabla de licencias
|
|
class CreateLicencias < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :licencias do |t|
|
|
t.timestamps
|
|
t.string :name, unique: true
|
|
t.text :description
|
|
t.text :deed
|
|
t.string :url
|
|
end
|
|
|
|
add_belongs_to :sites, :licencia, index: true
|
|
end
|
|
end
|