Completed
Push — master ( 9d50f6...a915e6 )
by Manu
27:24 queued 12:24
created
database/migrations/2017_11_27_152221_create_posts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      * @return void
13 13
      */
14 14
      public function up() {
15
-   Schema::create('posts', function (Blueprint $table) {
15
+   Schema::create('posts', function(Blueprint $table) {
16 16
      $table->increments('id');
17 17
      $table->string('title');
18 18
      $table->text('description');
Please login to merge, or discard this patch.
migrations/2017_11_13_130436_create_social_twitter_accounts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Schema::create('social_twitter_accounts', function (Blueprint $table) {
18
+        Schema::create('social_twitter_accounts', function(Blueprint $table) {
19 19
           $table->integer('user_id');
20 20
           $table->string('provider_user_id');
21 21
           $table->string('provider');
Please login to merge, or discard this patch.
migrations/2017_11_17_153801_create_social_facebook_accounts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Schema::create('social_facebook_accounts', function (Blueprint $table) {
18
+        Schema::create('social_facebook_accounts', function(Blueprint $table) {
19 19
           $table->integer('user_id');
20 20
           $table->string('provider_user_id');
21 21
           $table->string('provider');
Please login to merge, or discard this patch.