class CreateSupertagHashtags

This migration comes from supertag

Public Instance Methods

change() click to toggle source
# File lib/generators/supertag/templates/migrations/create_hashtags_migration.rb, line 3
def change
  create_table :supertag_hashtags do |t|
    t.string :name,             :index => true

    t.timestamps
  end
end