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

38 lines
757 B
Plaintext
Raw Normal View History

2004-04-19 20:49:52 +00:00
#! /bin/sh
2004-03-24 15:52:09 +00:00
echo Creating appdb tables
mysql -p -u root < appdb_tables.sql
2004-03-24 15:52:09 +00:00
echo Creating preferences list
mysql -p -u root < prefs_list.sql
2004-03-24 15:52:09 +00:00
echo Creating user list
mysql -p -u root < user_list.sql
2004-03-24 15:52:09 +00:00
echo Creating user preferences
mysql -p -u root < user_prefs.sql
2004-03-24 15:52:09 +00:00
echo Creating user privileges
mysql -p -u root < user_privs.sql
2004-03-24 15:52:09 +00:00
echo Creating session table
mysql -p -u root < session_list.sql
2004-03-24 15:52:09 +00:00
echo Adding categories
mysql -p -u root < app_category.sql
2004-11-09 22:55:47 +00:00
echo Adding maintainers
mysql -p -u root < maintainers.sql
echo Adding bug links
mysql -p -u root < buglinks.sql
echo Adding monitors
mysql -p -u root < monitors.sql
echo Creating error logging tables
mysql -p -u root < error_log.sql
echo Adding distributions
mysql -p -u root < distributions.sql