Changeset 1325 for feedmelinks/bin/create-ddl.sh
- Timestamp:
- 02/07/07 13:21:37 (2 years ago)
- Files:
-
- feedmelinks/bin/create-ddl.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks/bin/create-ddl.sh
r1185 r1325 1 1 #!/bin/sh 2 2 3 # export the table structure of the DB 3 . env.sh # read in environment config vars 4 4 5 mysqldump -u fml_fml -pfml fml_fml --no-data 5 # export the table structure of the whole DB 6 mysqldump -u `get_database_user` -p`get_database_password` `get_database_name` --no-data 6 7