ChiliProject is not maintained anymore. Please be advised that there will be no more updates.

We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.

schema_migrations.txt

schema_migrations export from redmine 'old' database - Paweł O, 2011-12-10 06:03 am

Download (3.2 kB)

 
1
--
2
-- Table structure for table `schema_migrations`
3
--
4
5
DROP TABLE IF EXISTS `schema_migrations`;
6
/*!40101 SET @saved_cs_client     = @@character_set_client */;
7
/*!40101 SET character_set_client = utf8 */;
8
CREATE TABLE `schema_migrations` (
9
  `version` varchar(255) NOT NULL,
10
  UNIQUE KEY `unique_schema_migrations` (`version`)
11
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
12
/*!40101 SET character_set_client = @saved_cs_client */;
13
14
--
15
-- Dumping data for table `schema_migrations`
16
--
17
18
LOCK TABLES `schema_migrations` WRITE;
19
/*!40000 ALTER TABLE `schema_migrations` DISABLE KEYS */;
20
INSERT INTO `schema_migrations` VALUES ('1'),('1-chiliproject_invoice'),('1-edavis10-redmine-customer-plugin-c263786'),('1-extended_profile'),('1-haru_iida-redmine_theme_changer-e291f74d4b62'),('1-redmine_blocks'),('1-redmine_polls'),('10'),('100'),('101'),('102'),('103'),('104'),('105'),('106'),('107'),('108'),('11'),('12'),('13'),('14'),('15'),('16'),('17'),('18'),('19'),('2'),('2-chiliproject_invoice'),('2-edavis10-redmine-customer-plugin-c263786'),('2-extended_profile'),('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'),('20100222185306-redmine_charts'),('20100222185307-redmine_charts'),('20100222185308-redmine_charts'),('20100313132032'),('20100313171051'),('20100407184912-redmine_charts'),('20100705164950'),('20100819172912'),('20101022164431-redmine_jchat'),('21'),('22'),('23'),('24'),('25'),('26'),('27'),('28'),('29'),('3'),('3-chiliproject_invoice'),('3-edavis10-redmine-customer-plugin-c263786'),('30'),('31'),('32'),('33'),('34'),('35'),('36'),('37'),('38'),('39'),('4'),('4-chiliproject_invoice'),('40'),('41'),('42'),('43'),('44'),('45'),('46'),('47'),('48'),('49'),('5'),('5-chiliproject_invoice'),('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');
21
/*!40000 ALTER TABLE `schema_migrations` ENABLE KEYS */;
22
UNLOCK TABLES;