$table->tinyIncrements('id'); 相当于自动递增 UNSIGNED TINYINT$table->increments('id'); 递增 ID(主键),相当于 UNSIGNED INTEGER$table->string……