Skip to content

Commit

Permalink
chore: Update CreateTables.sql to remove Issue table creation
Browse files Browse the repository at this point in the history
  • Loading branch information
leandromsft committed Jul 1, 2024
1 parent e9208e2 commit 77a4bcc
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/sqlscripts/CreateTables.sql
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
if not exists (select * from sysobjects where name='Issue' and xtype='U')
CREATE TABLE Issue (
Id INT PRIMARY KEY IDENTITY (1, 1),
IssueId INT NOT NULL,
IssueNumber INT NOT NULL,
IssueTitle VARCHAR(MAX) NOT NULL,
Action VARCHAR(255) NOT NULL,
State VARCHAR(255) NOT NULL,
CreateAt DATETIME2(7) NOT NULL,
UpdateAt DATETIME2(7) NULL,
ClosedAt DATETIME2(7) NULL,
RepositoryName VARCHAR(MAX) NOT NULL
)
GO

if not exists (select * from sysobjects where name='WorkflowRun' and xtype='U')
CREATE TABLE WorkflowRun (
Id INT PRIMARY KEY IDENTITY (1, 1),
Expand Down

0 comments on commit 77a4bcc

Please sign in to comment.