Refactor the database, in preparation to moving to postgresql
This commit is contained in:
82
database/migrations/2022_10_22_001507_echoarea.php
Normal file
82
database/migrations/2022_10_22_001507_echoarea.php
Normal file
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class Echoarea extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('echoareas', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
$table->string('name');
|
||||
$table->string('description');
|
||||
$table->boolean('active');
|
||||
$table->boolean('public');
|
||||
$table->string('notes')->nullable();
|
||||
|
||||
$table->bigInteger('domain_id');
|
||||
$table->foreign('domain_id')->references('id')->on('domains');
|
||||
});
|
||||
|
||||
Schema::create('fileareas', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
$table->string('name');
|
||||
$table->string('description');
|
||||
$table->boolean('active');
|
||||
$table->boolean('public');
|
||||
$table->string('notes')->nullable();
|
||||
|
||||
$table->bigInteger('domain_id');
|
||||
$table->foreign('domain_id')->references('id')->on('domains');
|
||||
});
|
||||
|
||||
Schema::create('address_echoarea', function (Blueprint $table) {
|
||||
$table->bigInteger('echoarea_id');
|
||||
$table->foreign('echoarea_id')->references('id')->on('echoareas');
|
||||
|
||||
$table->bigInteger('address_id');
|
||||
$table->foreign('address_id')->references('id')->on('addresses');
|
||||
|
||||
$table->unique(['echoarea_id','address_id']);
|
||||
|
||||
$table->dateTime('subscribed');
|
||||
});
|
||||
|
||||
Schema::create('address_filearea', function (Blueprint $table) {
|
||||
$table->bigInteger('filearea_id');
|
||||
$table->foreign('filearea_id')->references('id')->on('fileareas');
|
||||
|
||||
$table->bigInteger('address_id');
|
||||
$table->foreign('address_id')->references('id')->on('addresses');
|
||||
|
||||
$table->unique(['filearea_id','address_id']);
|
||||
|
||||
$table->dateTime('subscribed');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('address_echomail');
|
||||
Schema::dropIfExists('address_filearea');
|
||||
|
||||
Schema::dropIfExists('fileareas');
|
||||
Schema::dropIfExists('echoareas');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user