1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00
unleash.unleash/packages/unleash-api/migrations/sql/009-create-client-strategies.up.sql
Ivar d8f66b7136 Introduces the /api path.
Some endpoints are provided on both / and /api
to support older clients.

Closes #162
2020-02-20 08:30:37 +01:00

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
);