Skip to content

Instantly share code, notes, and snippets.

@acki
Created February 24, 2016 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acki/59594750938e1d398e81 to your computer and use it in GitHub Desktop.
Save acki/59594750938e1d398e81 to your computer and use it in GitHub Desktop.
redcap
USE `redcap_web`;
SET FOREIGN_KEY_CHECKS = 0;
INSERT INTO redcap_user_information (username, user_email, user_firstname, user_lastname, super_user, user_firstvisit) VALUES ('site_admin', 'joe.user@projectredcap.org', 'Joe', 'User', 1, now());
SET FOREIGN_KEY_CHECKS = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment