Sha256: 098dec2d980066e0ec51bb0b880b70110dce152545031ba8d5b8a876497b6629

Contents?: true

Size: 837 Bytes

Versions: 6

Compression:

Stored size: 837 Bytes

Contents

class CreatePhcscriptcdnFriendlyIdSlugs < ActiveRecord::Migration[5.2]
  def change

    create_table :phcscriptcdn_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 :phcscriptcdn_friendly_id_slugs, :sluggable_id
    add_index :phcscriptcdn_friendly_id_slugs, [:slug, :sluggable_type], name: 'scriptcdnpro_fri_id_slugable_type', length: { slug: 140, sluggable_type: 50 }
    add_index :phcscriptcdn_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 :phcscriptcdn_friendly_id_slugs, :sluggable_type

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
phcscriptcdn-54.1.0 db/migrate/20170509002355_create_phcscriptcdn_friendly_id_slugs.rb
phcscriptcdn-54.0.0 db/migrate/20170509002355_create_phcscriptcdn_friendly_id_slugs.rb
phcscriptcdn-53.0.0 db/migrate/20170509002355_create_phcscriptcdn_friendly_id_slugs.rb
phcscriptcdn-52.0.0 db/migrate/20170509002355_create_phcscriptcdn_friendly_id_slugs.rb
phcscriptcdn-51.0.0 db/migrate/20170509002355_create_phcscriptcdn_friendly_id_slugs.rb
phcscriptcdn-50.0.0 db/migrate/20170509002355_create_phcscriptcdn_friendly_id_slugs.rb