D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
database
/
migrations
/
Filename :
2019_05_27_103844_create_sm_testimonials_table.php
back
Copy
<?php use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSmTestimonialsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sm_testimonials', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->string('designation'); $table->string('institution_name'); $table->string('image'); $table->text('description'); $table->integer('star_rating')->default(5); $table->timestamps(); $table->integer('school_id')->nullable()->default(1)->unsigned(); $table->foreign('school_id')->references('id')->on('sm_schools')->onDelete('cascade'); }); DB::table('sm_testimonials')->insert([ [ 'name' => 'Tristique euhen', 'designation' => 'CEO', 'institution_name' => 'Google', 'image' => 'public/uploads/staff/demo/staff.jpg', 'description' => 'Highly recommend INFIX EDU for their outstanding school management system. Efficient, customizable, and excellent support. Reliable partner for any educational institution.', 'star_rating' => 5, 'created_at' => date('Y-m-d h:i:s') ], [ 'name' => 'Malala euhen', 'designation' => 'Chairman', 'institution_name' => 'Linkdin', 'image' => 'public/uploads/staff/demo/staff.jpg', 'description' => 'I strongly endorse INFIX EDU for their exceptional school management system—efficient, customizable, with excellent support. A reliable partner for any educational institution.', 'star_rating' => 4, 'created_at' => date('Y-m-d h:i:s') ], ]); } public function down() { Schema::dropIfExists('sm_testimonials'); } }