HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/negocios.lapieza.do/database/migrations/
Upload File :
Current File : /var/www/negocios.lapieza.do/database/migrations/2022_06_29_075906_create_product_queries_table.php
<?php



use Illuminate\Database\Migrations\Migration;

use Illuminate\Database\Schema\Blueprint;

use Illuminate\Support\Facades\Schema;



class CreateProductQueriesTable extends Migration

{

    /**

     * Run the migrations.

     *

     * @return void

     */

    public function up()

    {

        Schema::create('product_queries', function (Blueprint $table) {

            $table->id();

            $table->integer('customer_id');

            $table->integer('seller_id')->nullable();

            $table->integer('product_id');

            $table->longText('question');

            $table->longText('reply')->nullable();

            $table->timestamps();

        });

    }



    /**

     * Reverse the migrations.

     *

     * @return void

     */

    public function down()

    {

        Schema::dropIfExists('product_queries');

    }

}