mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
7ae2b4b65d
Some endpoints are provided on both / and /api to support older clients. Closes #162
7 lines
166 B
SQL
7 lines
166 B
SQL
--create new client_strategies table
|
|
CREATE TABLE client_strategies (
|
|
app_name varchar(255) PRIMARY KEY NOT NULL,
|
|
r timestamp default now(),
|
|
strategies json
|
|
);
|