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>
22 lines
892 B
Transact-SQL
22 lines
892 B
Transact-SQL
CREATE TABLE [dbo].[mfr__documents] (
|
|
[Id] BIGINT NOT NULL,
|
|
[CustomValues] NVARCHAR (MAX) NOT NULL,
|
|
[Version] INT NOT NULL,
|
|
[State] NVARCHAR (255) NULL,
|
|
[ExternalId] NVARCHAR (255) NULL,
|
|
[URI] NVARCHAR (255) NULL,
|
|
[IsGlobal] BIT NOT NULL,
|
|
[StartDateTime] DATETIME NULL,
|
|
[EndDateTime] DATETIME NULL,
|
|
[FileName] NVARCHAR (255) NULL,
|
|
[DateModified] DATETIME NOT NULL,
|
|
[UploadDate] DATETIME NOT NULL,
|
|
[IsLink] BIT NOT NULL,
|
|
[ContentType] NVARCHAR (255) NULL,
|
|
[HTMLCode] NVARCHAR (255) NULL,
|
|
[ServiceRequestId] BIGINT NOT NULL,
|
|
[Note] NVARCHAR (255) NULL,
|
|
CONSTRAINT [PK_mfr__document] PRIMARY KEY CLUSTERED ([Id] ASC)
|
|
);
|
|
|