From 3ada178ce49973f57ca4dbcefbb19b0a2fe472a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Thu, 10 Nov 2016 12:45:39 +0100 Subject: [PATCH] Update 009-create-client-strategies.up.sql --- .../migrations/sql/009-create-client-strategies.up.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/unleash-api/migrations/sql/009-create-client-strategies.up.sql b/packages/unleash-api/migrations/sql/009-create-client-strategies.up.sql index b39f820d32..27e412b957 100644 --- a/packages/unleash-api/migrations/sql/009-create-client-strategies.up.sql +++ b/packages/unleash-api/migrations/sql/009-create-client-strategies.up.sql @@ -1,6 +1,6 @@ --create new client_strategies table CREATE TABLE client_strategies ( app_name varchar(255) PRIMARY KEY NOT NULL, - r timestamp default now(), + updated_at timestamp default now(), strategies json );