| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 13 | public function up()  | 
            ||
| 14 | 	{ | 
            ||
| 15 | 		Schema::create('master_zonas', function(Blueprint $table) { | 
            ||
| 16 | 			$table->increments('id'); | 
            ||
| 17 | 			$table->integer('user_id'); | 
            ||
| 18 | 			$table->string('tingkat'); | 
            ||
| 19 | 			$table->integer('kode'); | 
            ||
| 20 | 			$table->string('label'); | 
            ||
| 21 | $table->timestamps();  | 
            ||
| 22 | $table->softDeletes();  | 
            ||
| 23 | });  | 
            ||
| 24 | }  | 
            ||
| 25 | |||
| 36 | 
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.