Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 24, 2020 20:27
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/b4068ef6fd20576b8f9c67a1bd06f96e to your computer and use it in GitHub Desktop.
Save parzibyte/b4068ef6fd20576b8f9c67a1bd06f96e 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 CreateMensajeIndividualsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('mensajes_individuales', function (Blueprint $table) {
// Cambia el nombre aquí __↑
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('mensajes_individuales');
// Cambia el nombre aquí __↑
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment