保存引擎
要配置数据表的保存引擎,可在结构生成器配置 engine
属性:
Schema::create('users', function($table)
{
$table->engine = 'InnoDB';
$table->string('email');
});
要配置数据表的保存引擎,可在结构生成器配置 engine
属性:
Schema::create('users', function($table)
{
$table->engine = 'InnoDB';
$table->string('email');
});