/*
SQLyog Enterprise - MySQL GUI v5.02
Host - 4.0.20a : Database - phoenix
*********************************************************************
Server version : 4.0.20a
*/


create database if not exists `phoenix`;

USE `phoenix`;

/*Table structure for table `music_filenames` */

DROP TABLE IF EXISTS `music_filenames`;

CREATE TABLE `music_filenames` (
  `id` bigint(20) NOT NULL auto_increment,
  `filename` text NOT NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM;

/*Table structure for table `settings` */

DROP TABLE IF EXISTS `settings`;

CREATE TABLE `settings` (
  `id` int(10) unsigned NOT NULL default '0',
  `volume` int(11) NOT NULL default '0',
  `savedSongFilename` text NOT NULL,
  `savedSongPosition` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM;
