Passed
Push — master ( 42435b...5c8dc8 )
by IRFA
13:04 queued 09:00
created
database/migrations/2020_02_21_103241_create_province.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -6,27 +6,27 @@
 block discarded – undo
6 6
 
7 7
 class CreateProvince extends Migration
8 8
 {
9
-    /**
10
-     * Run the migrations.
11
-     *
12
-     * @return void
13
-     */
14
-    public function up()
15
-    {
16
-        Schema::create('ro_province', function (Blueprint $table) {
17
-            $table->string('province_id', 20)->primary();
18
-            $table->string('province', 255)->nullable();
19
-            $table->timestamps();
20
-        });
21
-    }
9
+	/**
10
+	 * Run the migrations.
11
+	 *
12
+	 * @return void
13
+	 */
14
+	public function up()
15
+	{
16
+		Schema::create('ro_province', function (Blueprint $table) {
17
+			$table->string('province_id', 20)->primary();
18
+			$table->string('province', 255)->nullable();
19
+			$table->timestamps();
20
+		});
21
+	}
22 22
 
23
-    /**
24
-     * Reverse the migrations.
25
-     *
26
-     * @return void
27
-     */
28
-    public function down()
29
-    {
30
-        Schema::dropIfExists('ro_province');
31
-    }
23
+	/**
24
+	 * Reverse the migrations.
25
+	 *
26
+	 * @return void
27
+	 */
28
+	public function down()
29
+	{
30
+		Schema::dropIfExists('ro_province');
31
+	}
32 32
 }
Please login to merge, or discard this patch.