Merge pull request #16429 from ixiam/dev/core#1113
[civicrm-core.git] / tools / scripts / solr / createMigrationTable.sql
CommitLineData
6a488035
TO
1CREATE TABLE IF NOT EXISTS `civicrm_migration_mapping` (
2 `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique table ID',
3 `entity_table` varchar(64) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Table of the object mapped from slave to master',
4 `master_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of the object for master',
5 `slave_id` int(10) unsigned DEFAULT NULL COMMENT 'The ID of the object for slave',
6 PRIMARY KEY (`id`)
7) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=133 ;
8