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 CreateLayoutsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('layouts', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('layout_type_id'); $table->string('name'); $table->text('description')->nullable(); $table->string('file'); $table->string('image'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('layouts'); } }
[-] 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]