Sha256: 2b8027cd7292be662721f37fea26cc00846b6b474ece8cc3f087d0903237ebfe

Contents?: true

Size: 812 Bytes

Versions: 1

Compression:

Stored size: 812 Bytes

Contents

class CreatePhcscriptcdnproFriendlyIdSlugs < ActiveRecord::Migration[5.1]
  def change

    create_table :phcscriptcdnpro_friendly_id_slugs do |t|
      t.string   :slug,           :null => false
      t.integer  :sluggable_id,   :null => false
      t.string   :sluggable_type, :limit => 50
      t.string   :scope
      t.datetime :created_at
    end

    add_index :phcscriptcdnpro_friendly_id_slugs, :sluggable_id
    add_index :phcscriptcdnpro_friendly_id_slugs, [:slug, :sluggable_type], length: { slug: 140, sluggable_type: 50 }
    add_index :phcscriptcdnpro_friendly_id_slugs, [:slug, :sluggable_type, :scope], name: 'scriptcdnpro_fri_id_slugable_scope_type', length: { slug: 70, sluggable_type: 50, scope: 70 }, unique: true
    add_index :phcscriptcdnpro_friendly_id_slugs, :sluggable_type

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcscriptcdnpro-15.0.0 db/migrate/20170509002355_create_phcscriptcdnpro_friendly_id_slugs.rb