cotizaweb/database/migrations/2026_02_07_205139_create_companies_table.php
jesusfb 161fcee049
Some checks are pending
Deploy to EC2 cotiza / deploy (push) Waiting to run
first commit
2026-04-24 12:53:27 -07:00

37 lines
882 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('companies', function (Blueprint $table) {
$table->id();
$table->string('nombre');
$table->string('logo')->nullable();
$table->string('rfc')->nullable();
$table->string('email');
$table->enum('plan', ['basic','pro','premium'])->default('basic');
$table->integer('cotizaciones_mes')->default(0);
$table->integer('limite_cotizaciones')->default(50);
$table->boolean('activo')->default(true);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('companies');
}
};