Skip to content

Commit

Permalink
fix(all): npm is now included to build internal packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Aug 26, 2021
1 parent 88a6371 commit 5aa5f1e
Show file tree
Hide file tree
Showing 3 changed files with 271 additions and 481 deletions.
20 changes: 20 additions & 0 deletions DATABASE-CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,23 @@ ALTER TABLE dbo.GuaribasInstance ADD
facebookWorkplaceAppSecret nvarchar(255) NULL,
facebookWorkplaceAccessToken nvarchar(512) NULL
GO


# 2.0.140

/****** Object: Table [dbo].[GuaribasSchedule] Script Date: 25/08/2021 03:53:15 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[GuaribasSchedule]
[id] [int] IDENTITY(1,1) NOT NULL,
[name] [nvarchar](255) NULL,
[schedule] [nvarchar](255) NULL,
[instanceId] [int] NULL,
[createdAt] [datetimeoffset](7) NULL,
[updatedAt] [datetimeoffset](7) NULL

GO

0 comments on commit 5aa5f1e

Please sign in to comment.