CURRENT PATH:
/
home
/
dnsimamg
/
sclt.gov.iq
/
database
/
migrations
/
KEMBALI
|
HOME
Upload File Local:
Upload
Upload via URL:
Download
Dir Baru
File Baru
Editing:
2023_04_10_204453_create_settings_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('settings', function (Blueprint $table) { $table->id(); $table->text('contact_page')->nullable(); $table->text('about_page')->nullable(); $table->text('description')->nullable(); $table->text('keywords')->nullable(); $table->string('phone')->nullable(); $table->string('address')->nullable(); $table->string('email')->nullable(); $table->text('social_fb')->nullable(); $table->text('social_yt')->nullable(); $table->string('manager_name')->nullable(); $table->string('manager_image')->nullable(); $table->text('links')->nullable(); $table->text('useful_links')->nullable(); $table->text('home_about')->nullable(); $table->string('home_image')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } };
SIMPAN
BATAL