public function up()

in database/migrations/2014_10_12_100000_create_password_resets_table.php [14:21]


    public function up()
    {
        Schema::create('password_resets', function (Blueprint $table) {
            $table->string('email')->index();
            $table->string('token');
            $table->timestamp('created_at')->nullable();
        });
    }