$table->json('options');
$table->jsonb('options');
$table->lineString('positions');
$table->longText('description');
$table->macAddress('device');
$table->mediumIncrements('id');
$table->mediumInteger('votes');
$table->mediumText('description');
$table->morphs('taggable');
taggable_id
与字符串 taggable_type
$table->multiLineString('positions');
$table->multiPoint('positions');
$table->multiPolygon('positions');
$table->nullableMorphs('taggable');
morphs()
字段$table->nullableTimestamps();
timestamps()
字段$table->point('position');
$table->polygon('positions');
$table->rememberToken();
remember_token
字段$table->smallIncrements('id');
$table->smallInteger('votes');
$table->softDeletes();
deleted_at
字段$table->softDeletesTz();
deleted_at
字段$table->string('name', 100);
$table->text('description');
$table->time('sunrise');
内容版权声明:除非注明,否则皆为本站原创文章。