Skip to content

Commit

Permalink
Create 2023_08_13_172600_add_email_to_companies.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-Azelis authored Aug 13, 2023
1 parent da70167 commit 1e43d88
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions database/migrations/2023_08_13_172600_add_email_to_companies.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class AddEmailToCompanies extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('companies', function (Blueprint $table) {
$table->string('email', 150)->after('fax')->nullable()->default(null);
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('companies', function (Blueprint $table) {
$table->dropColumn('email');
});
}
}

0 comments on commit 1e43d88

Please sign in to comment.