mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
8c7de41d8c
Summary: The fbcode/linttool has been updated to support lua and sql here D19467627, so updating arc rules to cover the new extensions Reviewed By: zertosh Differential Revision: D19534326 fbshipit-source-id: 4e615653acedcdf2da88e7dc4b443ad22af1324f
26 lines
892 B
SQL
26 lines
892 B
SQL
/*
|
|
* 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.
|
|
*/
|
|
|
|
CREATE TABLE `pushrebaserecording` (
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
`repo_id` int(10) unsigned NOT NULL,
|
|
`ontorev` binary(40) NOT NULL,
|
|
`onto` varchar(512) NOT NULL,
|
|
`onto_rebased_rev` binary(40) DEFAULT NULL,
|
|
`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,
|
|
`duration_ms` int(10),
|
|
`replacements_revs` varchar(1024) DEFAULT NULL,
|
|
`ordered_added_revs` varchar(1024) DEFAULT NULL,
|
|
PRIMARY KEY (`id`) )
|
|
ENGINE=InnoDB DEFAULT CHARSET=utf8;
|