Skip to content

Commit

Permalink
schema changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhvjain committed Mar 6, 2025
1 parent dc1fedf commit 960dfb4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "beanbagdb",
"version": "0.6.7",
"version": "0.6.8",
"description": "A JS library to introduce a schema layer to a No-SQL local database",
"main": "src/index.js",
"module": "src/index.js",
Expand Down
10 changes: 4 additions & 6 deletions src/system_schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const default_app = {
active: true,
description: "Meta-schema or the schema for defining other schemas",
system_generated: true,
version: 1,
version: 1.25,
title: "Schema document",
schema: {
type: "object",
Expand Down Expand Up @@ -353,7 +353,7 @@ export const default_app = {
system_generated: true,
title: "System log",
active: true,
version: 1,
version: 1.25,
description: "To define edges in the simple directed graph of records.",
schema: {
type: "object",
Expand All @@ -369,10 +369,7 @@ export const default_app = {
},
app: {
type: "string",
},
time: {
type: "string",
},
}
},
},
settings: {
Expand Down Expand Up @@ -453,6 +450,7 @@ export const editable_metadata_schema = {
},
title:{
type:"string",
default:"Document",
maxLength:10000
},
ref:{
Expand Down

0 comments on commit 960dfb4

Please sign in to comment.