| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 15 | public function up() |
||
| 16 | { |
||
| 17 | Schema::create(config('lern.record.table'), function(Blueprint $table) { |
||
| 18 | $table->increments('id')->unsigned(); |
||
| 19 | $table->string('class'); |
||
| 20 | $table->string('file'); |
||
| 21 | $table->integer('code'); |
||
| 22 | $table->integer('status_code')->default(0); |
||
| 23 | $table->integer('line'); |
||
| 24 | $table->text('message'); |
||
| 25 | $table->mediumText('trace'); |
||
| 26 | $table->timestamps(); |
||
| 27 | }); |
||
| 28 | } |
||
| 29 | |||
| 40 | } |