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

15
tables/BUDGET_DETAIL.sql Normal file
View File

@@ -0,0 +1,15 @@
use Leo
go
if object_id('dbo.BUDGET_DETAIL', 'U') is not null
drop table dbo.BUDGET_DETAIL
go
create table dbo.BUDGET_DETAIL
(
TrxId int identity not null
, TrxDescription varchar(200) not null
, TrxDate date not null
, TrxAmount decimal(9,2)
, InsertDtTm datetime default CURRENT_TIMESTAMP
)