12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateContactsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('contacts', function (Blueprint $table) {
- $table->bigIncrements('id');
- $table->bigInteger('user_id')->unsigned()->index();
- $table->boolean('response_requested')->default(false);
- $table->text('message');
- $table->text('response');
- $table->timestamp('read_at')->nullable();
- $table->timestamp('responded_at')->nullable();
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('contacts');
- }
- }
|