This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/tables/create_tables
2004-11-09 22:55:47 +00:00

26 lines
491 B
Bash

#! /bin/sh
echo Creating appdb tables
mysql -u root < appdb_tables.sql
echo Creating preferences list
mysql -u root < prefs_list.sql
echo Creating user list
mysql -u root < user_list.sql
echo Creating user preferences
mysql -u root < user_prefs.sql
echo Creating user privilages
mysql -u root < user_privs.sql
echo Creating session table
mysql -u root < session_list.sql
echo Adding categories
mysql -u root < app_category.sql
echo Adding maintainers
mysql -u root < maintainers.sql