Sha256: 09f63a41114b283b6cb0f4a51a87a2956f1ad481d0fef5d41d8d7f7ddd1c2e32

Contents?: true

Size: 295 Bytes

Versions: 291

Compression:

Stored size: 295 Bytes

Contents

# -*- encoding : utf-8 -*-
class CreateSearches < ActiveRecord::Migration
  def self.up
    create_table :searches do |t|
      t.text  :query_params
      t.integer :user_id

      t.timestamps
    end
    add_index :searches, :user_id
  end

  def self.down
    drop_table :searches
  end
end

Version data entries

291 entries across 291 versions & 9 rubygems

Version Path
hydra-core-9.10.0 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-collections-8.2.0 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb
hydra-core-9.9.0 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-collections-8.1.1 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb
hydra-collections-8.1.0 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb
hydra-core-9.8.1 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-collections-8.0.0 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb
hydra-core-9.8.0 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-core-9.7.1 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-core-9.7.0 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-collections-7.0.0 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb
hydra-core-9.6.0 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-collections-5.0.4 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb
hydra-collections-6.0.0 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb
hydra-collections-6.0.0.rc2 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb
hydra-core-9.5.0 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-core-9.4.1 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-core-9.4.0 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-core-9.3.0 spec/support/db/migrate/20111101221803_create_searches.rb
hydra-collections-6.0.0.rc1 spec/test_app_templates/db/migrate/20111101221803_create_searches.rb