-- MySQL dump 10.10
--
-- Host: localhost    Database: sklep
-- ------------------------------------------------------
-- Server version       5.0.24a-Debian_4-log

-- Table structure for table autorzy
--
DROP TABLE IF EXISTS autorzy;
CREATE TABLE 'autorzy' (
   autor_id int(11) NOT NULL auto_increment,
   tytul_id int(11) NOT NULL default '0',
   autor varchar(125) default NULL,
   PRIMARY KEY (autor_id)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table autorzy
--
/*!40000 ALTER TABLE 'autorzy' DISABLE KEYS */;
LOCK TABLES 'autorzy' WRITE;
INSERT INTO autorzy VALUES (1,1,'Ellen Siever'),(2,1,'Aaron Weber'),
(3,2,'Arnold Robbins'),(4,2,'Nelson Beebe');
UNLOCK TABLES;
/*!40000 ALTER TABLE autorzy ENABLE KEYS */;
