Completed
Push — master ( 49b700...9f5493 )
by Manu
30:54 queued 15:56
created
database/migrations/2014_10_12_100000_create_password_resets_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('password_resets', function (Blueprint $table) {
16
+        Schema::create('password_resets', function(Blueprint $table) {
17 17
             $table->string('email')->index();
18 18
             $table->string('token')->index();
19 19
             $table->timestamp('created_at')->nullable();
Please login to merge, or discard this patch.
database/migrations/2017_05_24_162058_create_brand_model_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('brand_model', function (Blueprint $table) {
16
+        Schema::create('brand_model', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 80);
19 19
             $table->string('description', 120);
Please login to merge, or discard this patch.
database/migrations/2017_05_24_163656_create_material_type_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('material_type', function (Blueprint $table) {
16
+        Schema::create('material_type', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 80);
19 19
             $table->string('description', 120);
Please login to merge, or discard this patch.
database/migrations/2017_05_31_100142_create_provider_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('provider', function (Blueprint $table) {
16
+        Schema::create('provider', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 120);
19 19
             $table->string('shortName', 50);
Please login to merge, or discard this patch.
database/migrations/2017_05_28_135015_create_news_table.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,24 +7,24 @@
 block discarded – undo
7 7
 class CreateNewsTable extends Migration
8 8
 {
9 9
     /**
10
-      * Run the migrations.
11
-      *
12
-      * @return void
13
-      */
14
-     public function up()
15
-     {
16
-         // create table 'news'
17
-         Schema::create('news', function (Blueprint $table) {
18
-             $table->increments('id');
19
-             $table->string('title', 255);
20
-             $table->string('slug', 100)->unique();
21
-             $table->text('short_description');
22
-             $table->text('full_content');
23
-             $table->string('author', 100);
24
-             $table->string('category', 100);
25
-             $table->timestamps(); // timestamps() creates created_at & updated_at fields
26
-         });
27
-     }
10
+     * Run the migrations.
11
+     *
12
+     * @return void
13
+     */
14
+        public function up()
15
+        {
16
+            // create table 'news'
17
+            Schema::create('news', function (Blueprint $table) {
18
+                $table->increments('id');
19
+                $table->string('title', 255);
20
+                $table->string('slug', 100)->unique();
21
+                $table->text('short_description');
22
+                $table->text('full_content');
23
+                $table->string('author', 100);
24
+                $table->string('category', 100);
25
+                $table->timestamps(); // timestamps() creates created_at & updated_at fields
26
+            });
27
+        }
28 28
 
29 29
     /**
30 30
      * Reverse the migrations.
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      public function up()
15 15
      {
16 16
          // create table 'news'
17
-         Schema::create('news', function (Blueprint $table) {
17
+         Schema::create('news', function(Blueprint $table) {
18 18
              $table->increments('id');
19 19
              $table->string('title', 255);
20 20
              $table->string('slug', 100)->unique();
Please login to merge, or discard this patch.
database/migrations/2017_05_30_092548_create_providers_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('providers', function (Blueprint $table) {
16
+        Schema::create('providers', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 120);
19 19
             $table->string('shortName', 50);
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000000_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('users', function (Blueprint $table) {
16
+        Schema::create('users', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name');
19 19
             $table->string('email')->unique();
Please login to merge, or discard this patch.
database/migrations/2017_05_30_092525_create_location_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('location', function (Blueprint $table) {
16
+        Schema::create('location', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 100);
19 19
             $table->string('shortName', 50);
Please login to merge, or discard this patch.
database/migrations/2016_11_30_191930_create_courses_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('courses', function (Blueprint $table) {
16
+        Schema::create('courses', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->timestamps();
19 19
         });
Please login to merge, or discard this patch.