Skip to content

Commit

Permalink
Don't put date in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-hanson-zocdoc committed Oct 20, 2016
1 parent 3fb8078 commit 4ec6a01
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions model/Models/Database.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,16 @@ public Database(string name, IList<string> 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 = @"/*----------------------------------------------------------------------------
<auto-generated>
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.
</auto-generated>
----------------------------------------------------------------------------*/
", DateTime.Today.ToString("MM-dd-yyyy"));
";

#region " Properties "

Expand Down

0 comments on commit 4ec6a01

Please sign in to comment.