阅读(2621)
赞(32)
保存引擎
2016-02-24 15:53:02 更新
要配置数据表的保存引擎,可在结构生成器配置 engine 属性:
Schema::create('users', function($table)
{
$table->engine = 'InnoDB';
$table->string('email');
}); 要配置数据表的保存引擎,可在结构生成器配置 engine 属性:
Schema::create('users', function($table)
{
$table->engine = 'InnoDB';
$table->string('email');
});