From 4ec6a012e0c7dfa8074b6d0afc6c98a5ee92579a Mon Sep 17 00:00:00 2001 From: Colin Hanson Date: Thu, 20 Oct 2016 17:08:34 -0400 Subject: [PATCH] Don't put date in comment --- model/Models/Database.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/model/Models/Database.cs b/model/Models/Database.cs index e92d9015..38c8ad6c 100644 --- a/model/Models/Database.cs +++ b/model/Models/Database.cs @@ -60,18 +60,16 @@ public Database(string name, IList filteredTypes = null) public const string SqlRegularIdentifierRegex = @"(?!\d)[\w@$#]+"; // see rules for regular identifiers here https://msdn.microsoft.com/en-us/library/ms175874.aspx - public static readonly string AutoGenerateComment = String.Format( - @"/*---------------------------------------------------------------------------- + public const string AutoGenerateComment = @"/*---------------------------------------------------------------------------- This file was generated by schemazen. - Date: {0} Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. ----------------------------------------------------------------------------*/ -", DateTime.Today.ToString("MM-dd-yyyy")); +"; #region " Properties "