Sha256: 073bf072c70b0b998a53bf5ccf4ff4d86b0d355427b9be0326e579276183e4bc

Contents?: true

Size: 585 Bytes

Versions: 33

Compression:

Stored size: 585 Bytes

Contents

This plug-in adds ActiveRecord support for MySQL Full Text Search. It is adapted from
Zak Mandhro http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/

For example:

    create_table("stories", :force => true, :options => "ENGINE=MyISAM") do |t|
      t.column("subject", :string, :limit => 150)
      t.column("created_by_member_id", :integer, :limit => 10)
      t.column("body", :text)
    end

    #Create MySQL specific full-text index_type
    
Then simply use the standard Rake tasks db:schema:dump and dependent tasks (test clone, units, etc.)
as you would.

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
zena-1.2.8 vendor/plugins/ar_mysql_full_text/README
zena-1.2.7 vendor/plugins/ar_mysql_full_text/README
zena-1.2.6 vendor/plugins/ar_mysql_full_text/README
zena-1.2.5 vendor/plugins/ar_mysql_full_text/README
zena-1.2.4 vendor/plugins/ar_mysql_full_text/README
zena-1.2.3 vendor/plugins/ar_mysql_full_text/README
zena-1.2.2 vendor/plugins/ar_mysql_full_text/README
zena-1.2.1 vendor/plugins/ar_mysql_full_text/README
zena-1.2.0 vendor/plugins/ar_mysql_full_text/README
zena-1.1.3 vendor/plugins/ar_mysql_full_text/README
zena-1.1.2 vendor/plugins/ar_mysql_full_text/README
zena-1.1.1 vendor/plugins/ar_mysql_full_text/README
zena-1.1.0 vendor/plugins/ar_mysql_full_text/README
zena-1.0.0 vendor/plugins/ar_mysql_full_text/README
zena-1.0.0.rc3 vendor/plugins/ar_mysql_full_text/README
zena-1.0.0.rc2 vendor/plugins/ar_mysql_full_text/README
zena-1.0.0.rc1 vendor/plugins/ar_mysql_full_text/README
zena-0.16.9 vendor/plugins/ar_mysql_full_text/README
zena-1.0.0.beta3 vendor/plugins/ar_mysql_full_text/README
zena-0.16.8 vendor/plugins/ar_mysql_full_text/README