Redo database migrations for pgsql
This commit is contained in:
44
database/migrations/0130-create_domain_registrar.php
Normal file
44
database/migrations/0130-create_domain_registrar.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('domain_registrars', function(Blueprint $table)
|
||||
{
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
$table->integer('site_id')->unsigned();
|
||||
$table->boolean('active')->default(false);
|
||||
|
||||
$table->string('name',32);
|
||||
$table->string('file',32)->nullable();
|
||||
$table->string('whitelabel_url', 256)->nullable();
|
||||
$table->string('whitelabel_ns', 1024)->nullable();
|
||||
$table->string('manage_url', 256)->nullable();
|
||||
|
||||
$table->foreign(['site_id'])->references(['id'])->on('sites');
|
||||
|
||||
$table->unique(['id','site_id']);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::drop('domain_registrars');
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user