lenso-module-auth-password 0.1.4

First-party password auth module for the Lenso backend framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use platform_core::Migration;

pub const AUTH_PASSWORD_MIGRATIONS: &[Migration] = &[
    Migration {
        name: "auth-password/0001_create_auth_password_schema",
        sql: include_str!("../migrations/0001_create_auth_password_schema.sql"),
    },
    Migration {
        name: "auth-password/0002_create_password_credentials",
        sql: include_str!("../migrations/0002_create_password_credentials.sql"),
    },
    Migration {
        name: "auth-password/0003_create_login_failures",
        sql: include_str!("../migrations/0003_create_login_failures.sql"),
    },
];