Project

General

Profile

Defect #6105 » schema_migration_table_v1.0.0.sql

Perry Rhodan, 2010-08-11 18:48

 
1
--
2
-- Table structure for table `schema_migrations`
3
--DROP TABLE IF EXISTS `schema_migrations`;
4
SET @saved_cs_client     = @@character_set_client;
5
SET character_set_client = utf8;
6
CREATE TABLE `schema_migrations` (
7
  `version` varchar(255) NOT NULL,
8
  UNIQUE KEY `unique_schema_migrations` (`version`)
9
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
10
SET character_set_client = @saved_cs_client;
11

    
12
--
13
-- Dumping data for table `schema_migrations`
14
--
15

    
16
LOCK TABLES `schema_migrations` WRITE;
17
/*!40000 ALTER TABLE `schema_migrations` DISABLE KEYS */;
18
INSERT INTO `schema_migrations` VALUES ('1'),('10'),('100'),('101'),('102'),('103'),('104'),('105'),('106'),('107'),('108'),('11'),('12'),('13'),('14'),('15'),('16'),('17'),('18'),('19'),('2'),('20'),('20090214190337'),('20090312172426'),('20090312194159'),('20090318181151'),('20090323224724'),('20090401221305'),('20090401231134'),('20090403001910'),('20090406161854'),('20090425161243'),('20090503121501'),('20090503121505'),('20090503121510'),('20090614091200'),('20090704172350'),('20090704172355'),('20090704172358'),('20091010093521'),('20091017212227'),('20091017212457'),('20091017212644'),('20091017212938'),('20091017213027'),('20091017213113'),('20091017213151'),('20091017213228'),('20091017213257'),('20091017213332'),('20091017213444'),('20091017213536'),('20091017213642'),('20091017213716'),('20091017213757'),('20091017213835'),('20091017213910'),('20091017214015'),('20091017214107'),('20091017214136'),('20091017214236'),('20091017214308'),('20091017214336'),('20091017214406'),('20091017214440'),('20091017214519'),('20091017214611'),('20091017214644'),('20091017214720'),('20091017214750'),('20091025163651'),('20091108092559'),('20091114105931'),('20091123212029'),('20091205124427'),('20091220183509'),('20091220183727'),('20091220184736'),('20091225164732'),('20091227112908'),('20100221100219'),('20100313132032'),('20100313171051'),('20100705164950'),('21'),('22'),('23'),('24'),('25'),('26'),('27'),('28'),('29'),('3'),('30'),('31'),('32'),('33'),('34'),('35'),('36'),('37'),('38'),('39'),('4'),('40'),('41'),('42'),('43'),('44'),('45'),('46'),('47'),('48'),('49'),('5'),('50'),('51'),('52'),('53'),('54'),('55'),('56'),('57'),('58'),('59'),('6'),('60'),('61'),('62'),('63'),('64'),('65'),('66'),('67'),('68'),('69'),('7'),('70'),('71'),('72'),('73'),('74'),('75'),('76'),('77'),('78'),('79'),('8'),('80'),('81'),('82'),('83'),('84'),('85'),('86'),('87'),('88'),('89'),('9'),('90'),('91'),('92'),('93'),('94'),('95'),('96'),('97'),('98'),('99');
19
/*!40000 ALTER TABLE `schema_migrations` ENABLE KEYS */;
20
UNLOCK TABLES;
(2-2/3)