· 6 years ago · Jul 12, 2019, 05:24 PM
1DROP TABLE IF EXISTS `next_balls`;
2/*!40101 SET @saved_cs_client = @@character_set_client */;
3/*!40101 SET character_set_client = utf8 */;
4CREATE TABLE `next_balls` (
5 `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
6 `match_id` int(11) NOT NULL DEFAULT '0',
7 `inning_id` int(11) NOT NULL DEFAULT '0',
8 `created_at` timestamp NULL DEFAULT NULL,
9 `updated_at` timestamp NULL DEFAULT NULL,
10 PRIMARY KEY (`id`)
11) ENGINE=InnoDB AUTO_INCREMENT=176335 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
12/*!40101 SET character_set_client = @saved_cs_client */;
13
14--
15-- Dumping data for table `next_balls`
16--
17
18****/*!40000 ALTER TABLE `next_balls` DISABLE KEYS */;****