| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 14 | public function up()  | 
            ||
| 15 |     { | 
            ||
| 16 |         Schema::create('exports', function (Blueprint $table) { | 
            ||
| 17 |             $table->increments('id'); | 
            ||
| 18 |             $table->string('file', 255)->nullable(); | 
            ||
| 19 |             $table->string('type', 10); | 
            ||
| 20 |             $table->text('query'); | 
            ||
| 21 |             $table->integer('result_rows')->default(0); | 
            ||
| 22 |             $table->integer('row_processed')->default(0); | 
            ||
| 23 |             $table->dateTime('completed_at')->nullable(); | 
            ||
| 24 | $table->timestamps();  | 
            ||
| 25 | });  | 
            ||
| 38 |