You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 27, 2022. It is now read-only.
INIT_SQL="CREATE DATABASE $DB_NAME; ALTER DATABASE $DB_NAME CHARACTER SET utf8 COLLATE utf8_general_ci; GRANT ALL PRIVILEGES ON $DB_NAME.* TO 'StreamStory'@'localhost';"
echo 'Initializing database, please enter root password ...'
echo $INIT_SQL | mysql -u root -p
echo 'Initializing tables, please enter StreamStory password ...'
cat init-tables.sql | mysql -u StreamStory -p $DB_NAME