26ff8d9b4f
Set up repository with legacy .NET Framework 4.8 source (OLD/), new .NET 10 Blazor solution (NEW/), OpenSpec specifications, documentation, and project configuration.
13 lines
278 B
Transact-SQL
Executable File
13 lines
278 B
Transact-SQL
Executable File
CREATE TABLE [dbo].[Branch]
|
|
(
|
|
[Code] VARCHAR(12) NOT NULL,
|
|
[Description] VARCHAR(40) NULL,
|
|
[LastUpdateDT] DATETIME NOT NULL,
|
|
CONSTRAINT [PK_Branch] PRIMARY KEY CLUSTERED([Code])
|
|
)
|
|
|
|
GO
|
|
|
|
CREATE INDEX [IX_Branch_Lookup] ON [dbo].[Branch] ([Description])
|
|
|
|
GO |