Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('deploy_migrations', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('migration'); |
||
19 | $table->dateTime('created_at'); |
||
20 | }); |
||
21 | |||
22 | Schema::create('deploy_migrations_info', function (Blueprint $table) { |
||
23 | $table->increments('id'); |
||
24 | $table->string('migration'); |
||
25 | $table->json('output')->nullable(); |
||
26 | $table->json('error')->nullable(); |
||
27 | $table->dateTime('created_at'); |
||
28 | }); |
||
42 |