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

Closes #162
2016-11-09 22:32:53 +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
);