Total Complexity | 2 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class CreatePagesTable extends Migration |
||
8 | { |
||
9 | /** |
||
10 | * Run the migrations. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('pages', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->integer('template_id'); |
||
19 | $table->string('page')->nullable()->default(null); |
||
20 | $table->integer('order')->default(1); |
||
21 | $table->tinyInteger('isHp')->default(0); |
||
22 | $table->string('title'); |
||
23 | $table->string('slug'); |
||
24 | $table->integer('active'); |
||
25 | $table->string('roles')->nullable()->default(null); |
||
26 | $table->longText('meta'); |
||
27 | $table->longText('css')->nullable(); |
||
28 | $table->longText('js')->nullable(); |
||
29 | $table->timestamps(); |
||
30 | }); |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * Reverse the migrations. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function down() |
||
41 | } |
||
42 | } |
||
43 |