10ecdfa2e4
Adds the SQL Server Data Tools project for the fuchs_fds database — tables, table types, functions and stored procedures that the backend calls (e.g. fds__getInvoice, fds__merge_bankingtransactions, fds__tt__bankingtransactions, fds__admin_getReportCatalog, fis_* auth). Build/model caches (bin, obj, *.dbmdl, *.jfm, *.user) are git-ignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
10 lines
377 B
Transact-SQL
10 lines
377 B
Transact-SQL
CREATE TABLE [dbo].[fuchs_planner] (
|
|
[planner_id] TINYINT NOT NULL,
|
|
[shortname] VARCHAR (10) NOT NULL,
|
|
[name] VARCHAR (100) NULL,
|
|
[description] VARCHAR (2000) NULL,
|
|
[active] BIT CONSTRAINT [DF_fuchs_planner_active] DEFAULT ((1)) NOT NULL,
|
|
CONSTRAINT [PK_fuchs_planner] PRIMARY KEY CLUSTERED ([planner_id] ASC)
|
|
);
|
|
|