0

私は昨夜 Laravel でプロジェクトを開始し、Ardent および Entrust パッケージを使用して、User モデルをより安全で使いやすくしています。すべてをセットアップしましたが、データベースをシードできません。エラーはスローされませんが、データベースに保存されていません。

これは私のユーザーモデルです。

<?php

use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;
use LaravelBook\Ardent\Ardent;
use Zizaco\Entrust\HasRole;

class User extends Ardent implements UserInterface, RemindableInterface {
    use HasRole;

    public static $rules = array(
        'username'              => 'required|alpha_num|between:6,18|unique:users',
        'email'                 => 'required|email|unique:users',
        'password'              => 'required|alpha_num|min:8',
        'password_confirmation' => 'required|alpha_num|min:8',
        'first_name'            => 'alpha',
        'last_name'             => 'alpha',
        'city'                  => 'alpha',
        'state'                 => 'alpha',
        'rate'                  => 'numeric',
        'profile_pic'           => 'image',
        'commitment'            => 'string'
    );

    public static $passwordAttributes  = array('password');

    public $autoHydrateEntityFromInput = true;

    public $forceEntityHydrationFromInput = true;

    public $autoPurgeRedundantAttributes = true;

    public $autoHashPasswordAttributes = true;

    protected $table = 'users';

    protected $hidden = array('password');

    public function getAuthIdentifier()
    {
        return $this->getKey();
    }

    public function getAuthPassword()
    {
        return $this->password;
    }

    public function getReminderEmail()
    {
        return $this->email;
    }

}

これは私usersの移行における私のスキーマです。

Schema::create(
    'users',
    function (Blueprint $table) {
        $table->increments('id');
        $table->string('username');
        $table->string('email');
        $table->string('password', 60);
        $table->string('first_name')->nullable();
        $table->string('last_name')->nullable();
        $table->string('city')->nullable();
        $table->string('state', 2)->nullable();
        $table->string('zip', 9)->nullable();
        $table->float('rate', 10, 2)->nullable();
        $table->boolean('listed')->default(false);
        $table->string('profile_pic')->nullable();
        $table->string('commitment')->nullable();
        $table->timestamps();
        $table->softDeletes();
    }
);

最後に、これが私のシード データです。

$admin = User::create(
    array(
         'username'              => 'admin',
         'email'                 => 'admin@example.com',
         'password'              => 'admin',
         'password_confirmation' => 'admin',
         'first_name'            => 'Admin',
         'last_name'             => 'User',
         'city'                  => 'Cincinnati',
         'state'                 => 'OH',
         'zip'                   => '45243'
    )
);

User::create(
    array(
         'username'              => 'user',
         'email'                 => 'user@example.com',
         'password'              => 'user',
         'password_confirmation' => 'user',
         'first_name'            => 'Normal',
         'last_name'             => 'User'
    )
);

User モデルで Ardent を拡張しているという事実に絞り込みましたが、その理由はわかりません。

4

4 に答える 4

2

私は問題を理解しました。私のシードは検証に合格していませんでした。失敗すると、Ardent はエラーをMessageBagモデルのインスタンスに格納するため、エラーは表示されませんでした。これらのエラーをシードに出力して確認する必要がありました。そのようなばかげた間違い。うまくいけば、他の人がこれを見て、その間違いをしないでください!

于 2013-08-12T17:49:40.787 に答える
0

それはたまたま、自分のデータベースに保存していた値がないことに気付きました。スローして例外を発生させる代わりに、空白になり、次のコードを実行しませんでした。奇妙ですが、それは解決策かもしれません。

于 2014-06-20T13:08:34.520 に答える