| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('license_serials', function (Blueprint $table) { |
||
| 17 | $table->bigIncrements('id'); |
||
| 18 | $table->string('name',65); |
||
| 19 | $table->string('domain',120); |
||
| 20 | $table->string('phone_number',30)->nullable(); |
||
| 21 | $table->text('address')->nullable(); |
||
| 22 | $table->string('serial',120)->unique(); |
||
| 23 | $table->string('expired',16); |
||
| 24 | $table->boolean('logging')->default(0); |
||
| 25 | $table->boolean('status')->default(0); |
||
| 26 | $table->timestamps(); |
||
| 27 | }); |
||
| 39 |