2022-04-22 20:01:30 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
2022-04-26 18:43:36 -07:00
|
|
|
return new class() extends Migration {
|
2022-04-22 20:01:30 -07:00
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2022-04-23 16:25:16 -07:00
|
|
|
Schema::create('joined', function (Blueprint $table) {
|
2022-04-22 20:01:30 -07:00
|
|
|
$table->id();
|
2022-04-26 21:16:46 -07:00
|
|
|
$table->timestamps(6);
|
2022-04-26 18:43:36 -07:00
|
|
|
$table->foreignId('collective_id')
|
|
|
|
->constrained('collectives')
|
|
|
|
->onUpdate('cascade')
|
|
|
|
->onDelete('cascade');
|
|
|
|
$table->string('url');
|
|
|
|
$table->string('subject');
|
|
|
|
$table->string('image')->nullable();
|
|
|
|
$table->boolean('approved');
|
2022-04-22 20:01:30 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2022-04-23 16:25:16 -07:00
|
|
|
Schema::dropIfExists('joined');
|
2022-04-22 20:01:30 -07:00
|
|
|
}
|
|
|
|
};
|