mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
37 lines
856 B
PHP
37 lines
856 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Support\Facades\Schema;
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
||
|
class AddBlogTable extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
Schema::create('blog', function(Blueprint $table) {
|
||
|
$table->increments('id');
|
||
|
$table->integer('user_id')->unsigned();
|
||
|
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||
|
$table->string('title')->nullable();
|
||
|
$table->text('body')->nullable();
|
||
|
$table->text('tags')->nullable();
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
Schema::drop('blog');
|
||
|
}
|
||
|
}
|