Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function up() |
||
13 | { |
||
14 | Schema::create('moip_cancellation', function($table) { |
||
15 | $table->increments('id'); |
||
16 | $table->string('classification', 100)->nullable()->comment('Título do motivo do cancelamento'); |
||
17 | $table->mediumText('description')->nullable(); |
||
18 | $table->mediumText('message')->nullable()->comment('Sugestão de mensagem ao comprador'); |
||
19 | $table->string('recovery', 50)->nullable()->comment('Oportunidade de Recuperação'); |
||
20 | $table->timestamps(); |
||
21 | $table->softDeletes(); |
||
22 | }); |
||
23 | } |
||
24 | |||
36 |