Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('triadev_elasticsearch_migration', function (Blueprint $table) { |
||
17 | $table->bigIncrements('id'); |
||
18 | $table->string('migration'); |
||
19 | $table->integer('status')->default( |
||
20 | \Triadev\EsMigration\Business\Mapper\MigrationStatus::MIGRATION_STATUS_WAIT |
||
21 | ); |
||
22 | $table->text('error')->nullable(); |
||
23 | $table->timestamps(); |
||
24 | }); |
||
37 |