Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('templates', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('name'); |
||
19 | $table->string('slug'); |
||
20 | $table->string('hintpath'); |
||
21 | $table->string('path'); |
||
22 | $table->string('type'); |
||
23 | $table->string('version'); |
||
24 | $table->string('author'); |
||
25 | $table->longText('fonts'); |
||
26 | $table->longText('css'); |
||
27 | $table->longText('js'); |
||
28 | $table->longText('json'); |
||
29 | $table->integer('active'); |
||
30 | $table->timestamps(); |
||
31 | }); |
||
44 |