Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped version and fixed some SQL #110

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[assembly: ComVisible(false)]


[assembly: AssemblyVersion("06.05.05.00")]
[assembly: AssemblyVersion("06.05.08.00")]
[assembly: CLSCompliant(true)]
[assembly: AssemblyFileVersion("06.05.05.00")]
[assembly: AssemblyFileVersion("06.05.08.00")]

4 changes: 2 additions & 2 deletions DotNetNuke.Modules.UserDefinedTable.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@

IF EXISTS (select * from dbo.sysobjects where id = object_id(N'{databaseOwner}[{objectQualifier}UserDefinedRows]') and OBJECTPROPERTY(id, N'IsTable') = 1)
BEGIN
ALTER TABLE {databaseOwner}{objectQualifier}UserDefinedRows ADD CreatedAt datetime NULL
IF NOT EXISTS (select * from dbo.syscolumns where id=object_id(N'{databaseOwner}[{objectQualifier}UserDefinedRows]') and name='CreatedAt')
BEGIN
ALTER TABLE {databaseOwner}{objectQualifier}UserDefinedRows ADD CreatedAt datetime NULL
END
END
GO

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/***** *****/
/************************************************************/

//Improve index for search with dates
/** Improve index for search with dates **/

IF EXISTS (SELECT Name FROM sys.indexes WHERE Name = 'IX_{objectQualifier}UserDefinedRows')
BEGIN
Expand Down