mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-31 00:16:47 +01:00
d8f66b7136
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
|
|
);
|