Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Creating table 'StateLogs'
- CREATE TABLE [StateLogs] (
- [State] nvarchar(4000) NOT NULL,
- [Data] nvarchar(4000) NOT NULL,
- [Modified] datetime NOT NULL,
- [Id] nvarchar(4000) NOT NULL,
- [NodeId] nvarchar(4000) NOT NULL
- );
- GO
- -- Creating primary key on [Id] in table 'StateLogs'
- ALTER TABLE [StateLogs]
- ADD CONSTRAINT [PK_StateLogs]
- PRIMARY KEY ([Id] );
- GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement