Sha256: 9263ca802e54775a240e201fffd0ed44358671f908ddb53418ec47a46c975727
Contents?: true
Size: 407 Bytes
Versions: 7
Compression:
Stored size: 407 Bytes
Contents
class AddCategorialTags < ActiveRecord::Migration def change create_table :categorical_tags do |t| t.string :label t.string :slug t.timestamps null: false t.index :label, unique: true t.index :slug, unique: true end create_table :categorical_taggings do |t| t.references :taggable, polymorphic: true, index: true t.integer :tag_id end end end
Version data entries
7 entries across 7 versions & 1 rubygems