File: /home/cursos.ril.es/database/migrations/2016_05_16_143654_create_plantillas_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePlantillasTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('plantillas', function (Blueprint $table) {
$table->increments('id');
$table->string('nombre');
$table->text('contenido');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('plantillas');
}
}