Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 10 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('payment_systems', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('name')->nullable(); |
||
19 | $table->string('system')->unique(); |
||
20 | $table->string('status')->default(\Goodoneuz\PayUz\Models\PaymentSystem::NOT_ACTIVE); |
||
21 | $table->timestamps(); |
||
22 | }); |
||
23 | } |
||
24 | |||
35 |