mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 12:11:15 +00:00
9 lines
197 B
SQL
9 lines
197 B
SQL
CREATE TABLE users (
|
|
id integer primary key asc,
|
|
username TEXT,
|
|
digesta1 TEXT,
|
|
UNIQUE(username)
|
|
);
|
|
|
|
INSERT INTO users (username,digesta1) VALUES
|
|
('admin', '87fd274b7b6c01e48d7c2f965da8ddf7');
|