That might work, but if you have a much more sophisticted SQL database, do this
Open your "Creatalltables.sql" or whatever it's named in your club kit, replace all "dbo" with the godaddy sql database login name.
Execute query and you've created all tables.
1.Then SELECT RoleId FROM aspnet_Roles WHERE RoleName = 'Administrators'
Click Submit and save the return value
2.Copy the following T-SQL statement into the Query Analyzer window:
SELECT UserId FROM aspnet_Users WHERE UserName = '<username>'
Replace <username> with the user name of the account to which administrator privileges will be granted.
Click Submit and save the return value
Copy the following T-SQL statement into the Query Analyser window:
INSERT INTO aspnet_UsersInRoles (RoleId, UserId) VALUES ('<roleID>', '<userID>')
Replace <roleID> with the return value from step 1. Replace <userID> with the return value from step 2.
Click Submit
You're now admin