sapling/eden/mononoke/repo_client/schemas/sqlite-reversefillerqueue.sql
Kostia Balytskyi a174858239 reversefillerqueue: change bundle from varchar to varbinary
Summary: This is to bring it into sync with the `forwardfillerqueue` types.

Reviewed By: markbt

Differential Revision: D21660012

fbshipit-source-id: 5148023478c175cd49707d88251701a08fcbe0ce
2020-05-20 07:34:22 -07:00

17 lines
504 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 `reversefillerqueue` (
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
`bundle` varbinary(255) NOT NULL,
`reponame` varbinary(255) NOT NULL,
`slice` UNSIGNED INTEGER DEFAULT '0',
`created_at` datetime DEFAULT CURRENT_TIMESTAMP,
`claimed_by` varchar(255) DEFAULT NULL,
`claimed_at` datetime DEFAULT NULL
);