greenbell/fulltext_searchable

View on GitHub
lib/rails/generators/fulltext_searchable/templates/migration.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateFulltextIndicesTable < ActiveRecord::Migration
  def self.up
    SCHEMA_AUTO_INSERTED_HERE
  end

  def self.down
    drop_table :fulltext_indices
  end
end