Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created March 8, 2018 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsdecena/9d5b593fbbf3e47184f86c57f6f5c912 to your computer and use it in GitHub Desktop.
Save jsdecena/9d5b593fbbf3e47184f86c57f6f5c912 to your computer and use it in GitHub Desktop.
Create Carousel Table Migration File
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCarouselTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('carousels', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->string('link')->nullable();
$table->string('src');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('carousels');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment