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