New code, building a migration routine.

This commit is contained in:
James Cole
2014-06-30 07:26:38 +02:00
parent 5d430e7dad
commit ecadf005a8
23 changed files with 338 additions and 15 deletions

View File

@@ -18,7 +18,8 @@ class CreateUsersTable extends Migration {
$table->timestamps();
$table->string('email',100);
$table->string('password',60);
$table->string('verification',32);
$table->string('verification',32)->nullable();
$table->string('reset',32)->nullable();
$table->string('remember_token',255)->nullable();
$table->boolean('migrated');
});