2020-01-24 17:11:53 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
*
|
|
|
|
* This software may be used and distributed according to the terms of the
|
|
|
|
* GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
2018-07-13 19:19:17 +03:00
|
|
|
CREATE TABLE `pushrebaserecording` (
|
|
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
`repo_id` int(10) unsigned NOT NULL,
|
2018-08-20 16:12:28 +03:00
|
|
|
`ontorev` binary(40) NOT NULL,
|
2018-07-13 19:19:17 +03:00
|
|
|
`onto` varchar(512) NOT NULL,
|
2018-11-12 15:15:32 +03:00
|
|
|
`onto_rebased_rev` binary(40) DEFAULT NULL,
|
2018-07-13 19:19:17 +03:00
|
|
|
`conflicts` LONGTEXT DEFAULT NULL,
|
|
|
|
`pushrebase_errmsg` varchar(1024) DEFAULT NULL,
|
|
|
|
`upload_errmsg` varchar(1024) DEFAULT NULL,
|
|
|
|
`bundlehandle` varchar(1024),
|
|
|
|
`timestamps` LONGTEXT NOT NULL,
|
|
|
|
`recorded_manifest_hashes` LONGTEXT NOT NULL,
|
|
|
|
`real_manifest_hashes` LONGTEXT NOT NULL,
|
2018-07-25 12:22:26 +03:00
|
|
|
`duration_ms` int(10),
|
2018-11-12 15:15:32 +03:00
|
|
|
`replacements_revs` varchar(1024) DEFAULT NULL,
|
|
|
|
`ordered_added_revs` varchar(1024) DEFAULT NULL,
|
2018-07-13 19:19:17 +03:00
|
|
|
PRIMARY KEY (`id`) )
|
|
|
|
ENGINE=InnoDB DEFAULT CHARSET=utf8;
|