Files
scylladb/auth/roles-metadata.hh
Gleb Natapov 1d188f0394 auth: remove legacy auth mode and upgrade code
A system needs to be upgraded to use v2 auth before moving to this
ScyllaDB version otherwise the boot will fail.
2026-03-10 10:09:39 +02:00

28 lines
392 B
C++

/*
* Copyright (C) 2017-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#pragma once
#include <string_view>
namespace auth {
namespace meta {
namespace roles_table {
constexpr std::string_view name{"roles", 5};
constexpr std::string_view role_col_name{"role", 4};
} // namespace roles_table
} // namespace meta
} // namespace auth