Krucas\LaravelUserEmailVerification\Console\MakeVerificationCommand::createUsersMigration PHP Method

createUsersMigration() protected method

Create a base migration file for the users table.
protected createUsersMigration ( ) : string
return string
    protected function createUsersMigration()
    {
        $name = 'add_verified_columns_to_users_table';
        $path = $this->laravel->databasePath() . '/migrations';
        return $this->laravel['migration.creator']->create($name, $path);
    }