File: /home/cursos.ril.es/database/migrations/2016_05_04_095116_modify_users_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class ModifyUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('apellidos');
$table->integer('telefono');
$table->string('camara');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('apellidos');
$table->dropColumn('telefono');
$table->dropColumn('camara');
});
}
}