Skip to content

Commit

Permalink
Deno formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
acrodrig committed Oct 29, 2023
1 parent a312bd4 commit 431cb50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ddl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ const dataTypes = {
const _BaseSchema: DB.Schema = {
name: "_BaseSchema",
properties: {
id: { type: "integer", required: true, primaryKey: true, comment: "Unique identifier, auto-generated. It's the primary key." },
insertedAt: { type: "date", required: false, dateOn: "insert", comment: "Timestamp when current record is inserted" },
updatedAt: { type: "date", required: false, dateOn: "update", comment: "Timestamp when current record is updated" },
etag: { type: "string", required: false, maxLength: 1024, comment: "Possible ETag for all resources that are external. Allows for better synch-ing." },
id: { type: "integer", required: true, primaryKey: true, comment: "Unique identifier, auto-generated. It's the primary key." },
insertedAt: { type: "date", required: false, dateOn: "insert", comment: "Timestamp when current record is inserted" },
updatedAt: { type: "date", required: false, dateOn: "update", comment: "Timestamp when current record is updated" },
etag: { type: "string", required: false, maxLength: 1024, comment: "Possible ETag for all resources that are external. Allows for better synch-ing." },
},
indices: [
{ name: "insertedAt", properties: ["insertedAt"] },
Expand Down

0 comments on commit 431cb50

Please sign in to comment.