-- Table: platform_license CREATE TABLE [platform_license] ( [gobject_id] int NOT NULL, [license_type] int NOT NULL, CONSTRAINT [PK_platform_license] PRIMARY KEY ([gobject_id], [gobject_id]) ); GO ALTER TABLE [platform_license] ADD FOREIGN KEY ([gobject_id]) REFERENCES [gobject] ([gobject_id]); GO