hackpad
hackpad copied to clipboard
mysql script error
My mysql version 5.6.27 when i run ./contrib/scripts/setup-mysql-db.sh ERROR 1054 (42S22) at line 1: Unknown column 'plugin' in 'mysql.user'
try creating the database and the user by hand from the mysql console
create database hackpad;
grant all privileges on hackpad.* to 'hackpad'@'localhost' identified by 'INSERT_PASSWORD_HERE';