-- -------------------------------------------------- -- Creating all tables -- -------------------------------------------------- -- Creating table 'FIELD_INFO' CREATE TABLE [FIELD_INFO] ( [TYPE] nvarchar(512) NOT NULL, [OFFSET] int NOT NULL, [NAME] nvarchar(512) NOT NULL, [ID] uniqueidentifier primary key ); -- Creating table 'FIELD_MAPPING' CREATE TABLE [FIELD_MAPPING] ( [TYPE_NAME] nvarchar(512) NOT NULL, [FIELD_NAME] nvarchar(512) NOT NULL, [ID] uniqueidentifier primary key ); -- Creating table 'Labels' CREATE TABLE [Labels] ( [ID] uniqueidentifier NOT NULL primary key, [Name] nvarchar(256) NOT NULL, [Address] integer not null ); -- Creating table 'LOCAL_ARGUMENT_INFO' CREATE TABLE [LOCAL_ARGUMENT_INFO] ( [METHODLABELNAME] nvarchar(256) NOT NULL, [IsArgument] bit NOT NULL, [INDEXINMETHOD] int NOT NULL, [OFFSET] int NOT NULL, [NAME] nvarchar(64) NOT NULL, [TYPENAME] nvarchar(256) NOT NULL, [ID] uniqueidentifier primary key ); -- Creating table 'MethodIlOps' CREATE TABLE [MethodIlOps] ( [ID] uniqueidentifier primary key, [LabelName] nvarchar(256) NOT NULL, [StackDiff] int NOT NULL, [IlOffset] int NOT NULL ); -- Creating table 'AssemblyFiles' CREATE TABLE [AssemblyFiles] ( [ID] uniqueidentifier primary key, [Pathname] nvarchar(256) NOT NULL ); -- Creating table 'Methods' CREATE TABLE [Methods] ( [ID] uniqueidentifier primary key, [TypeToken] int NOT NULL, [MethodToken] int NOT NULL, [LineColStart] uniqueidentifier NOT NULL, [LineColEnd] uniqueidentifier NOT NULL, [LabelCall] nvarchar(256) NOT NULL ); -- Creating table 'Documents' CREATE TABLE [Documents] ( [ID] uniqueidentifier primary key, [Pathname] nvarchar(256) NOT NULL ); alter table methods add column AssemblyFileID uniqueidentifier null;-- references AssemblyFiles(ID); alter table methods add column DocumentID uniqueidentifier null;-- references Documents(ID); alter table methods add column LabelStartID uniqueidentifier null;-- references Labels(ID); alter table methods add column LabelEndID uniqueidentifier null;-- references Labels(ID); alter table MethodIlOps add column MethodID uniqueidentifier null;-- references Methods(ID); -- Creating non-clustered index for FOREIGN KEY 'FK_AssemblyFileMethod' CREATE INDEX [IX_FK_AssemblyFileMethod] ON [Methods] ([AssemblyFileID]); -- Creating non-clustered index for FOREIGN KEY 'FK_DocumentMethod' CREATE INDEX [IX_FK_DocumentMethod] ON [Methods] ([DocumentID]); -- Creating non-clustered index for FOREIGN KEY 'FK_LabelMethod' CREATE INDEX [IX_FK_LabelMethod] ON [Methods] ([LabelStartID]); -- Creating non-clustered index for FOREIGN KEY 'FK_LabelMethodEnd' CREATE INDEX [IX_FK_LabelMethodEnd] ON [Methods] ([LabelEndID]); -- Creating non-clustered index for FOREIGN KEY 'FK_MethodIlOpMethod' CREATE INDEX [IX_FK_MethodIlOpMethod] ON [MethodIlOps] ([MethodID]);