36 lines
		
	
	
		
			787 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			787 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace _migrations;
 | 
						|
 | 
						|
use Illuminate\Database\Migrations\Migration;
 | 
						|
use Illuminate\Database\Schema\Blueprint;
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
use Illuminate\Database\Capsule\Manager;
 | 
						|
 | 
						|
class PostMigration extends Migration
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Run the migrations.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public static function up(): void
 | 
						|
    {
 | 
						|
        Manager::schema()->create('post', function (Blueprint $table) {
 | 
						|
            $table->increments('id');
 | 
						|
            $table->text('content')->nullable(false);
 | 
						|
            $table->integer('user_id');
 | 
						|
            $table->timestamps();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reverse the migrations.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public static function down(): void
 | 
						|
    {
 | 
						|
        Manager::schema()->dropIfExists('user');
 | 
						|
    }
 | 
						|
} |