initial commit

This commit is contained in:
Peter Wood
2022-07-15 15:37:20 -04:00
parent 70a85b6024
commit 27e7c7829c
13 changed files with 249 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
use Leo
go
if object_id('dbo.BUDGET_CATEGORY', 'U') is not null
drop table dbo.BUDGET_CATEGORY
go
CREATE TABLE dbo.BUDGET_CATEGORY
(
CtgId smallint IDENTITY(1,1) NOT NULL
, CtgDescription varchar(200) NULL
, CtgCredit bit default 0
)
GO