Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 11, 2020 03:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/aa96cd76d62f2956c76a958083555cbb to your computer and use it in GitHub Desktop.
Save parzibyte/aa96cd76d62f2956c76a958083555cbb to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateClientesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('clientes', function (Blueprint $table) {
$table->id();
$table->string("nombre");
$table->string("telefono");
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('clientes');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment