Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('emails', function(Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('libelle'); |
||
19 | $table->string('body_type'); |
||
20 | $table->string('action'); |
||
21 | $table->text('cc'); |
||
22 | $table->text('bcc'); |
||
23 | $table->text('content'); |
||
24 | $table->boolean('status'); |
||
25 | $table->timestamps(); |
||
26 | $table->softDeletes(); |
||
27 | }); |
||
28 | } |
||
29 | |||
40 |