-- --------------------------------------------------------
-- Host:                         109.106.254.1
-- Server version:               10.5.19-MariaDB-cll-lve - MariaDB Server
-- Server OS:                    Linux
-- HeidiSQL Version:             9.5.0.5196
-- --------------------------------------------------------

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;

-- Dumping structure for table u353443769_aras.Toms_Cars
CREATE TABLE IF NOT EXISTS `Toms_Cars` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `desc` varchar(1000) NOT NULL,
  `year` year(4) NOT NULL,
  `onsale` tinyint(4) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- Dumping data for table u353443769_aras.Toms_Cars: ~6 rows (approximately)
/*!40000 ALTER TABLE `Toms_Cars` DISABLE KEYS */;
INSERT IGNORE INTO `Toms_Cars` (`id`, `name`, `desc`, `year`, `onsale`) VALUES
	(1, 'Jaguar', 'RWE', '0000', 0),
	(2, 'Lada', 'Testing the year', '2012', 0),
	(3, 'BMW', 'This is a super not cool car', '2014', 0),
	(4, 'Citreon', 'This is my car', '2018', 1),
	(5, 'Ferrari', 'yes', '1993', 0),
	(6, 'Volvo', 'this is just another car for testing poruoupurses', '0000', 0);
/*!40000 ALTER TABLE `Toms_Cars` ENABLE KEYS */;

/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
