mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-02-21 10:19:02 -06:00
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
5 lines
144 B
SQL
5 lines
144 B
SQL
INSERT INTO _user
|
|
(id, email, password_hash, verified, admin)
|
|
VALUES
|
|
(uuid_v7(), 'admin@localhost', (hash_password('secret')), TRUE, TRUE);
|