18 lines
636 B
SQL
18 lines
636 B
SQL
-- "$Id: chanfix.addme.sql,v 1.4 2006/12/09 00:29:20 buzlip01 Exp $"
|
|
-- 2005-08-13 : reed
|
|
--
|
|
-- This script will add an account for user "Admin" with owner (+o) access.
|
|
-- Please modify the default user ("Admin") to your account name.
|
|
--
|
|
-- This script may be used to create (not modify) multiple owner
|
|
-- accounts provided that the account name is changed each time.
|
|
--
|
|
|
|
INSERT INTO users (user_name,created,last_updated,last_updated_by,language_id,flags)
|
|
VALUES ('Admin',extract(epoch FROM now())::int,extract(epoch FROM now())::int,'(added via addme script)',1,16);
|
|
|
|
INSERT INTO hosts (user_id,host)
|
|
VALUES (1,'*!*@*');
|
|
|
|
-- END HERE
|