Passed
Push — master ( 6160a4...8e4138 )
by Faith
15:58 queued 13:09
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');
19 19
             $table->timestamp('created_at')->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_06_01_000004_create_oauth_clients_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('oauth_clients', function (Blueprint $table) {
16
+        Schema::create('oauth_clients', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('user_id', 150)->index()->nullable();
19 19
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2019_12_10_120712_create_daily_services_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function up()
16 16
     {
17
-        Schema::create('daily_services', function (Blueprint $table) {
17
+        Schema::create('daily_services', function(Blueprint $table) {
18 18
             $table->string('id')->index();
19 19
             $table->string('ministry_id', 150)->index();
20 20
             $table->enum('day', Helper::$weekDays);
Please login to merge, or discard this patch.
database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_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('oauth_refresh_tokens', function (Blueprint $table) {
16
+        Schema::create('oauth_refresh_tokens', function(Blueprint $table) {
17 17
             $table->string('id', 100)->primary();
18 18
             $table->string('access_token_id', 100)->index();
19 19
             $table->boolean('revoked');
Please login to merge, or discard this patch.
database/migrations/2019_09_04_135557_create_ministry_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('ministry_users', function (Blueprint $table) {
16
+        Schema::create('ministry_users', function(Blueprint $table) {
17 17
             $table->string('id', 150)->primary();
18 18
             $table->string('ministry_id', 150)->index();
19 19
             $table->string('user_id', 150)->index();
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->string('id', 150)->primary();
18 18
             $table->string('name');
19 19
             $table->string('email', 150)->nullable();
Please login to merge, or discard this patch.
database/migrations/2019_10_10_130626_create_activations_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('activations', function (Blueprint $table) {
16
+        Schema::create('activations', function(Blueprint $table) {
17 17
             $table->string('id')->index();
18 18
             $table->string('ministry_id', 150)->unique()->index();
19 19
             $table->string('code')->unique();
Please login to merge, or discard this patch.
database/migrations/2019_09_04_135556_create_profiles_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('profiles', function (Blueprint $table) {
16
+        Schema::create('profiles', function(Blueprint $table) {
17 17
             $table->string('id', 150)->primary();
18 18
             $table->string('ministry_id', 150)->index();
19 19
             $table->text('about_us')->nullable();
Please login to merge, or discard this patch.
database/migrations/2019_10_10_130626_create_a_p_i_keys_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('a_p_i_keys', function (Blueprint $table) {
16
+        Schema::create('a_p_i_keys', function(Blueprint $table) {
17 17
             $table->string('id');
18 18
             $table->string('ministry_id', 150)->unique()->index();
19 19
             $table->string('api_key')->unique();
Please login to merge, or discard this patch.