5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-01 10:14:16 +00:00
panel/db/migrate/20190716195155_create_designs.rb

16 lines
334 B
Ruby
Raw Normal View History

2019-07-17 22:18:48 +00:00
# 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