5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 01:40:48 +00:00
panel/db/migrate/20190718185817_create_licencias.rb
2019-07-19 19:37:53 -03:00

17 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