Revision: | 1.1 |
Committed: | Wed Mar 14 22:38:49 2001 UTC (23 years, 8 months ago) by tdb |
Branch: | MAIN |
CVS Tags: | PROJECT_COMPLETION, HEAD |
Branch point for: | SERVER_PIRCBOT |
Log Message: | Makefile for creating or dropping the mySQL tables. |
# | User | Rev | Content |
---|---|---|---|
1 | tdb | 1.1 | # Makefile for the server database |
2 | # $Id$ | ||
3 | |||
4 | all: | ||
5 | @echo "Please try on of the following;" | ||
6 | @echo " make create - creates the ipacket table" | ||
7 | @echo " make drop - drops the ipacket table" | ||
8 | |||
9 | create: | ||
10 | mysql -u co600_10 -p co600_10_db < ipacket.sql | ||
11 | |||
12 | drop: | ||
13 | mysql -u co600_10 -p co600_10_db < drop.sql |