#!/bin/sh db="/usr/local/bin/mysql -u root" $db > /dev/null 2> /dev/null << ALL_DONE use sso; drop table Scenery; ALL_DONE $db << ALL_DONE USE sso; create table Scenery ( scenery_id integer not null, passable tinyint not null, prop_events tinyint not null, index (scenery_id) ); show columns from Scenery; show index from Scenery; ALL_DONE