Merge "Allow to tag reviews"

This commit is contained in:
Dave Borowitz
2016-04-12 13:55:11 +00:00
committed by Gerrit Code Review
25 changed files with 379 additions and 31 deletions

View File

@@ -32,7 +32,7 @@ import java.util.List;
/** A version of the database schema. */
public abstract class SchemaVersion {
/** The current schema version. */
public static final Class<Schema_121> C = Schema_121.class;
public static final Class<Schema_122> C = Schema_122.class;
public static int getBinaryVersion() {
return guessVersion(C);

View File

@@ -0,0 +1,27 @@
// Copyright (C) 2016 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.server.schema;
import com.google.inject.Inject;
import com.google.inject.Provider;
public class Schema_122 extends SchemaVersion {
@Inject
Schema_122(Provider<Schema_121> prior) {
super(prior);
}
// Adds tag column
}