-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auth #13
base: master
Are you sure you want to change the base?
Auth #13
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Email/password kombinasyonu ile kayıt olan kullanıcılara email onayı da gönderelim. https://laravel.com/docs/5.7/verification
@@ -18,7 +18,8 @@ public function up() | |||
$table->string('name'); | |||
$table->string('email')->unique(); | |||
$table->string('username')->unique(); | |||
$table->string('github_id')->unique(); | |||
$table->string('password'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bdemirpolat Burak migration'da herhangi bir değişiklik yapılacağı zaman yeni bir migration oluşturup yapman gerekiyor ki daha önce dotCFP'i kurmuş kişiler etkilenmesin. Örneğin cfp.phpkonf.org'da biz bu migration'ı çalıştırdık ve users tablosuna kayıtlar girildi. Ben yeniden bu migration'ı çalıştırmak için migrate:refresh gibi bir komut verirsem verileri kaybederim. Ama aşağıdaki gibi yeni bir migration oluşturup eklersen yeni eklediğin password alanını da kullanabiliyor olurum.
php artisan make:migration add_password_to_users_table
defaultStringLength issue has been fixed.
Auth review.