Completed
Push — dev ( 62b398...b3c6af )
by Alies
04:06
created
database/migrations/2019_03_09_214723_create_subscriptions_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('subscriptions', function (Blueprint $table) {
16
+        Schema::create('subscriptions', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('donator_id');
19 19
             $table->unsignedBigInteger('campaign_id');
Please login to merge, or discard this patch.
database/migrations/2019_03_09_214333_create_donators_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('donators', function (Blueprint $table) {
16
+        Schema::create('donators', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('email')->unique();
19 19
             $table->string('name')->nullable();
Please login to merge, or discard this patch.
database/migrations/2019_03_09_214743_create_transactions_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('transactions', function (Blueprint $table) {
16
+        Schema::create('transactions', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('donator_id');
19 19
             $table->unsignedBigInteger('campaign_id');
Please login to merge, or discard this patch.
database/migrations/2019_01_05_054914_create_campaigns_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('campaigns', function (Blueprint $table) {
16
+        Schema::create('campaigns', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name');
19 19
             $table->text('description');
Please login to merge, or discard this patch.
database/migrations/2018_11_22_060625_create_configurations_table.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('configurations', function (Blueprint $table) {
16
+        Schema::create('configurations', function(Blueprint $table) {
17 17
             $table->increments('id');
18
-            $table->string('configuration_name',255);
19
-            $table->longtext('configuration_value',255);
18
+            $table->string('configuration_name', 255);
19
+            $table->longtext('configuration_value', 255);
20 20
             $table->boolean('configuration_active');
21 21
             $table->timestamps();
22 22
         });
Please login to merge, or discard this patch.
migrations/2019_01_05_054915_create_campaign_translations_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('campaign_translations', function (Blueprint $table) {
16
+        Schema::create('campaign_translations', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->unsignedBigInteger('campaign_id');
19 19
             $table->string('locale', 2);
Please login to merge, or discard this patch.
database/factories/Transaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * @var \Illuminate\Database\Eloquent\Factory $factory
10 10
  */
11 11
 
12
-$factory->define(Transaction::class, function (\Faker\Generator $faker) {
12
+$factory->define(Transaction::class, function(\Faker\Generator $faker) {
13 13
     return [
14 14
         'donator_id' => factory(Donator::class)->lazy(),
15 15
         'campaign_id' => factory(Campaign::class)->lazy(),
Please login to merge, or discard this patch.
database/factories/CampaignFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @var \Illuminate\Database\Eloquent\Factory $factory
8 8
  */
9 9
 
10
-$factory->define(Campaign::class, function (Faker\Generator $faker) {
10
+$factory->define(Campaign::class, function(Faker\Generator $faker) {
11 11
     return [
12 12
         'name' => $faker->words(3, true),
13 13
         'description' => $faker->sentence,
Please login to merge, or discard this patch.
database/factories/AdminFactory.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
 */
17 17
 
18
-$factory->define(Admin::class, function (Faker $faker) {
18
+$factory->define(Admin::class, function(Faker $faker) {
19 19
     return [
20 20
         'name' => $faker->name,
21 21
         'email' => $faker->unique()->safeEmail,
Please login to merge, or discard this patch.