-- MySQL dump 9.11
--
-- Host: localhost    Database: dojotree
-- ------------------------------------------------------
-- Server version	4.0.24_Debian-10ubuntu2.3-log

--
-- Table structure for table `album`
--

CREATE TABLE `album` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(30) default NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM;

--
-- Dumping data for table `album`
--

INSERT INTO `album` VALUES (1,'EP1');
INSERT INTO `album` VALUES (2,'Marvelous Things');

--
-- Table structure for table `song`
--

CREATE TABLE `song` (
  `id` int(11) NOT NULL auto_increment,
  `albumId` int(11) default NULL,
  `name` varchar(30) default NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM;

--
-- Dumping data for table `song`
--

INSERT INTO `song` VALUES (1,1,'Blackened Crown');
INSERT INTO `song` VALUES (2,1,'Telescope Eyes');
INSERT INTO `song` VALUES (3,2,'Memories');
INSERT INTO `song` VALUES (4,2,'Laughing City');

