Skip to content

Commit

Permalink
Fix to the schema for caching objects #102
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Morris committed Jan 13, 2021
1 parent 1828066 commit 11dd0ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions database/schema/V2.1__schema.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
create schema caching;
create schema if not exists caching;

drop table caching.dist_cache;
drop table if exists caching.dist_cache;

create table caching.dist_cache
create table if not exists caching.dist_cache
(
Id text not null,
Value bytea,
Expand Down

0 comments on commit 11dd0ab

Please sign in to comment.