37 lines
978 B
PHP
37 lines
978 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
|
use Illuminate\Support\Facades\Schema;
|
||
|
|
|
||
|
|
return new class extends Migration
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Run the migrations.
|
||
|
|
*/
|
||
|
|
public function up(): void
|
||
|
|
{
|
||
|
|
Schema::create('clients', function (Blueprint $table) {
|
||
|
|
$table->id();
|
||
|
|
$table->foreignId('workspace_id')->constrained()->cascadeOnDelete();
|
||
|
|
$table->string('company_name');
|
||
|
|
$table->string('legal_form');
|
||
|
|
$table->string('ice')->nullable();
|
||
|
|
$table->string('fiscal_id')->nullable();
|
||
|
|
$table->string('rc')->nullable();
|
||
|
|
$table->string('cnss')->nullable();
|
||
|
|
$table->string('patente')->nullable();
|
||
|
|
$table->timestamps();
|
||
|
|
$table->softDeletes();
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Reverse the migrations.
|
||
|
|
*/
|
||
|
|
public function down(): void
|
||
|
|
{
|
||
|
|
Schema::dropIfExists('clients');
|
||
|
|
}
|
||
|
|
};
|