PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
CMS
/
Database
/
Migrations
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateComponentsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('components', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('page_id')->index('components_page_id_foreign_idx'); $table->unsignedBigInteger('layout_id'); $table->integer('level')->nullable(); $table->timestamps(); $table->foreign(['page_id'])->references(['id'])->on('pages')->onUpdate('CASCADE')->onDelete('CASCADE'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('components'); } }
[-] 2021_12_15_064237_create_sliders_table.php
[edit]
[+]
..
[-] 2022_03_06_050741_create_layouts_table.php
[edit]
[-] 2022_03_06_050657_create_layout_types_table.php
[edit]
[-] 2021_12_15_064237_create_slides_table.php
[edit]
[-] 2022_03_06_051911_create_component_properties_table.php
[edit]
[-] 2021_12_15_064237_create_theme_options_table.php
[edit]
[-] 2022_03_06_051329_create_components_table.php
[edit]
[-] 2021_12_15_064237_create_pages_table.php
[edit]