From adb56690c1b16e2c87b3204cfbdcc9594a36941a Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Mon, 10 Apr 2006 13:45:28 +0000 Subject: #57861: Separate .mysql files for 4.0 and 4.1 --- INSTALL.mysql.txt | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'INSTALL.mysql.txt') diff --git a/INSTALL.mysql.txt b/INSTALL.mysql.txt index 11956d27b..44e809f19 100644 --- a/INSTALL.mysql.txt +++ b/INSTALL.mysql.txt @@ -66,13 +66,20 @@ INSTALLATION AND CONFIGURATION 2. LOAD THE DRUPAL DATABASE SCHEMA Once you have a database, you must load the required tables into it. + Depending on the version of MySQL you are using, you must use the + file 'database.4.0.mysql' (for MySQL 4.0 or lower) or + 'database.4.1.mysql' (for MySQL 4.1 or higher). Both files are + located in Drupal's database directory. If you use a web-based control panel, you should be able to upload - the file 'database.mysql' from Drupal's 'database' directory and - run it directly as SQL commands. + the appropriate file and run it directly as SQL commands. From the command line, use (again, replacing 'username' and 'databasename' with your MySQL username and database name): - mysql -u username -p databasename < database/database.mysql + for MySQL 4.0 or lower: + mysql -u username -p databasename < database/database.4.0.mysql + for MySQL 4.1 or higher: + mysql -u username -p databasename < database/database.4.1.mysql + -- cgit v1.2.3