aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--database/migrations/2014_10_12_000000_create_users_table.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php
index 53b1c70..6751167 100644
--- a/database/migrations/2014_10_12_000000_create_users_table.php
+++ b/database/migrations/2014_10_12_000000_create_users_table.php
@@ -17,7 +17,7 @@ class CreateUsersTable extends Migration
$table->string('name');
$table->string('email')->unique();
$table->string('password');
- $table->string('avatar')->default('user.jpg');
+ $table->string('avatar')->default('0.png');
$table->rememberToken();
$table->timestamps();
});