Files
budget-database/mysql/tables/BUDGET_CATEGORY.sql
2023-03-04 18:23:05 -05:00

15 lines
243 B
Transact-SQL

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