Sha256: e0ca566118d4d39de4e39d472fb4f87ee162a9a98216f4790ddf2ee82556c065

Contents?: true

Size: 270 Bytes

Versions: 1

Compression:

Stored size: 270 Bytes

Contents

class CreateIconlyProjects < ActiveRecord::Migration[5.0]
  def change
    create_table :iconly_projects, id: :uuid do |t|
      t.uuid :user_id, null: false, index: true, foreign_key: true
      t.string :name
      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/20170131081131_create_iconly_projects.rb