Skip to content

Commit

Permalink
Updated create groups
Browse files Browse the repository at this point in the history
  • Loading branch information
lwjameson committed Oct 25, 2023
1 parent ca00843 commit 26e03df
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions create-default-groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,14 +291,12 @@ const main = async (options) => {
}

// Make sure we have a DEFAULT_CONTEXT tag_definition
const tagCreateResp = await supabase.from('tag_definitions').upsert(
{
name: 'DEFAULT_CONTEXT',
target_type: 'context',
scope: 'system',
},
{ onConflict: 'name, target_type, scope' }
);
const tagCreateResp = await supabase.from('tag_definitions').upsert({
id: 'bb2d0a6e-3f43-4e82-819d-ca78c7172981',
name: 'DEFAULT_CONTEXT',
target_type: 'context',
scope: 'system',
});
};

const optionDefinitions = [
Expand Down

0 comments on commit 26e03df

Please sign in to comment.