承接 huang-yi/mysql-fulltext-laravel 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

huang-yi/mysql-fulltext-laravel

Composer 安装命令:

composer require huang-yi/mysql-fulltext-laravel

包简介

Let Laravel elegantly create MySQL fulltext index.

README 文档

README

MySQL很早以前就已经支持fulltext索引了,但是Laravel的Schema并没有为此提供便捷的创建方法,该拓展包就是为了解决这一痛点的:让Laravel的数据迁移优雅地创建MySQL的fulltext索引。

版本

由于目前只在Laravel5.3环境下测试过,所以暂时不支持其他版本,后续会更新。

Fulltext Laravel PHP
1.0.x 5.3.* >=5.6.4

安装

方法一,直接使用composer安装:

$ composer require huang-yi/mysql-fulltext-laravel:1.0.*

方法二,在项目根目录的composer.jsonrequire属性添加:

{
    "require": {
        "huang-yi/mysql-fulltext-laravel": "1.0.*"
    }
}

然后运行:

$ composer update

使用

php artisan make:migration命令生成迁移文件后,需要替换原有的Facade与Blueprint类。可参考以下代码:

<?php

use HuangYi\MySqlFulltext\Blueprint;
use HuangYi\MySqlFulltext\Schema;
use Illuminate\Database\Migrations\Migration;

class CreatePostsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('posts', function (Blueprint $table) {
            $table->increments('id');
            $table->string('title');
            $table->text('content');
            $table->timestamps();

            $table->fulltext(['title', 'content']);
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('posts');
    }
}

支持

Bugs和问题可提交至Github,或者请联系作者黄毅(coodeer@163.com

License

The MySQL-Fulltext-Laravel is open-sourced software licensed under the MIT license

统计信息

  • 总下载量: 12
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 12
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 12
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-01-08

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固