php artisan make:migration create_users_table --create=users
php artisan make:migration add_votes_to_users_table --table=users
$table->string('name', 100);
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email');
$table->timestamps();
});
$table->geometryCollection('positions');