Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function up() |
||
10 | { |
||
11 | Schema::create('mail_templates', function (Blueprint $table) { |
||
12 | $table->increments('id'); |
||
13 | $table->string('mailable'); |
||
14 | $table->text('subject')->nullable(); |
||
15 | $table->text('template'); |
||
16 | $table->string('type')->default('html'); |
||
17 | $table->string('markdown_theme')->nullable(); |
||
18 | $table->timestamps(); |
||
19 | }); |
||
20 | } |
||
21 | } |
||
22 |