Files
DP44/DataPRO/Modules/Database/DatabaseMigrationScripts/.svn/pristine/a8/a8f36867ee08ce7ee6994115d2a8769559fbf10c.svn-base

8 lines
402 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
<EFBFBD><EFBFBD>CREATE TABLE [dbo].[SensorChangeType](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_SensorChangeType] PRIMARY KEY CLUSTERED
(
[Id] ASC
)
) ON [PRIMARY]