Sha256: 70163d7e64e034919f1e32804bb6412b6949833c519fda7e3d8f41db98cf794c

Contents?: true

Size: 294 Bytes

Versions: 1

Compression:

Stored size: 294 Bytes

Contents

class CreateIconlyPackages < ActiveRecord::Migration[5.0]
  def change
    create_table :iconly_packages, id: :uuid do |t|
      t.uuid :user_id, null: false, index: true, foreign_key: true
      t.string :name
      t.boolean :shared
      t.string :slug

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iconly-1.0.0 db/migrate/20170130220400_create_iconly_packages.rb