Sha256: 7a1ed186a236083978fd539fe78b4f86d226aa93924a85fd68558ff2bbb4e77d

Contents?: true

Size: 310 Bytes

Versions: 1

Compression:

Stored size: 310 Bytes

Contents

class CreateIconlyIcons < ActiveRecord::Migration[5.0]
  def change
    create_table :iconly_icons, id: :uuid do |t|
      t.uuid :package_id, null: false, index: true, foreign_key: true
      t.string :name
      t.string :slug
      t.string :svg
      t.text :contents

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iconly-1.0.0 db/migrate/20170131002414_create_iconly_icons.rb