Skip to content

Instantly share code, notes, and snippets.

@saeedhajinasiri
Created July 20, 2020 09:50
Show Gist options
  • Save saeedhajinasiri/2c43a5a570e4cd3d9e09270d4becaa5b to your computer and use it in GitHub Desktop.
Save saeedhajinasiri/2c43a5a570e4cd3d9e09270d4becaa5b to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateContactsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('contacts', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name');
$table->string('email');
$table->string('phone');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('contacts');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment