| 123456789101112131415161718192021222324252627282930 | <?phpuse Illuminate\Support\Facades\Schema;use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class AddContentToNotification extends Migration{    /**     * Run the migrations.     *     * @return void     */    public function up()    {        Schema::table('notifications', function (Blueprint $table) {            $table->string('content', 200)->after('name')->nullable();        });    }    /**     * Reverse the migrations.     *     * @return void     */    public function down()    {        //    }}
 |