Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('imports', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('file', 255); |
||
19 | $table->integer('file_rows'); |
||
20 | $table->text('db_cols'); |
||
21 | $table->text('model_map')->nullable(); |
||
22 | $table->integer('row_processed')->default(0); |
||
23 | $table->integer('row_imported')->default(0); |
||
24 | $table->dateTime('completed_at')->nullable(); |
||
25 | $table->timestamps(); |
||
26 | }); |
||
39 |