1
を動作していないユーザーの列に挿入値は、私は簡単なユーザ登録アプリケーション作成:もちろんLaravel 5.2 -
$confirmation_key = str_random(100);
$data = [
'email' => $post['email'],
'password' => Crypt::encrypt($post['password']),
'confirmation_key' => $confirmation_key
];
User::create($data);
を、私はそれのための移行を追加しました:
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->boolean('confirmed')->default(0);
$table->string('confirmation_key')->nullable();
$table->rememberToken();
$table->timestamps();
});
}
ユーザーがに正常に追加確認キーはまだ変更されずにnullです。 その他の質問:ユーザーテーブルに別の列を追加する場合はどうすればよいですか?私は何をする必要がありますか?
列が塗りつぶされない場合はどうなりますか?充満していない列で何ができますか? –
@ItzhakAvraham私の編集を見てください –