43 lines
897 B
PHP
43 lines
897 B
PHP
<?php
|
|
|
|
/**
|
|
* Laravel Schematics
|
|
*
|
|
* WARNING: removing @tag value will disable automated removal
|
|
*
|
|
* @package Laravel-schematics
|
|
* @author Maarten Tolhuijs <mtolhuys@protonmail.com>
|
|
* @url https://github.com/mtolhuys/laravel-schematics
|
|
* @tag laravel-schematics-customers-model
|
|
*/
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateCustomersTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('customers', static function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('customers');
|
|
}
|
|
}
|