mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
7 lines
175 B
SQL
7 lines
175 B
SQL
--create new client_strategies table
|
|
CREATE TABLE client_strategies (
|
|
app_name varchar(255) PRIMARY KEY NOT NULL,
|
|
updated_at timestamp default now(),
|
|
strategies json
|
|
);
|