Can you add two fields to the EventsCalendarVenue Table by default? Lat Lon Also, this would be a great enhancement table to add to venues: Venue Properties is a 'big list' format of hierarchical properties driven by the DNN PropertyDefinitionID It can store extended values about a venue. We have be using this extension in our projects, I thought I'd pass the datamodel along so that you could include it in your release, even if you don't implement it yet. CREATE TABLE [dbo].[EventsCalendarVenueProperties]( [VenueId] [int] NOT NULL, [PropertyDefinitionid] [int] NOT NULL, [PropertyValue] [nvarchar](3750) NULL, [PropertyCategory] [nvarchar](50) NULL, [ParentID] [int] NULL, [SortOrder] [tinyint] NULL, [CreatedBy] [int] NOT NULL, [CreatedDate] [datetime] NOT NULL, [ModifiedBy] [int] NOT NULL, [ModifiedDate] [datetime] NOT NULL, CONSTRAINT [PK__EventsCalendarVe__66010E09] PRIMARY KEY CLUSTERED ( [PropertyDefinitionid] ASC, [VenueId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO |