5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 04:20:48 +00:00
panel/db/migrate/20190716195155_create_designs.rb
2019-07-17 19:18:48 -03:00

16 lines
334 B
Ruby

# frozen_string_literal: true
# Crea la tabla de diseños
class CreateDesigns < ActiveRecord::Migration[5.2]
def change
create_table :designs do |t|
t.timestamps
t.string :name, unique: true
t.text :description
t.string :gem, unique: true
t.string :url
t.string :license
end
end
end