| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('admin_settings', function (Blueprint $table) { |
||
| 17 | $table->id(); |
||
| 18 | $table->string('shop_name')->default('MongiCommerce'); |
||
| 19 | $table->string('iban')->default('DE79100110012626219557'); |
||
| 20 | $table->string('email')->default('[email protected]'); |
||
| 21 | $table->string('minimum_shop')->default('50'); |
||
| 22 | $table->string('stripe_api_key')->default('pk_test_gm6oybWPRbK7A3btf0CgwmRv'); |
||
| 23 | $table->string('stripe_api_secret')->default('sk_test_F6whJE7SznVkEI0aPxeo97b3'); |
||
| 24 | $table->string('share_capital')->default('10000'); |
||
| 25 | $table->string('address')->default('Via monsignor Laera, Acquaviva delle fonti, 214, Italia'); |
||
| 26 | $table->string('currency')->default('€'); |
||
| 27 | $table->string('telephone')->default('3240537258'); |
||
| 28 | $table->string('claim_email')->default('[email protected]'); |
||
| 29 | $table->string('piva')->default('12345678901'); |
||
| 30 | $table->timestamps(); |
||
| 31 | }); |
||
| 44 |