Index: Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs =================================================================== diff -u -rf53b3c70d87b9e66c3a46981b8d8a471b95e2adc -rf21480a6b28a6637ecab0e2dd3e75240cabd9c9a --- Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs (.../CreateScript.cs) (revision f53b3c70d87b9e66c3a46981b8d8a471b95e2adc) +++ Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs (.../CreateScript.cs) (revision f21480a6b28a6637ecab0e2dd3e75240cabd9c9a) @@ -30,31 +30,21 @@ /// public abstract class CreateScript { - protected readonly string CreateQuery; private readonly string version; /// /// Creates a new instance of the class. /// - /// The version was designed for. - /// The SQL query that belongs to . - /// Thrown when: - /// - /// is empty or null, - /// is empty, null, or consist out of only whitespace characters. - /// - protected CreateScript(string version, string query) + /// The version for this . + /// Thrown when is empty + /// or null. + protected CreateScript(string version) { if (string.IsNullOrEmpty(version)) { throw new ArgumentException(@"Version must have a value.", nameof(version)); } - if (string.IsNullOrWhiteSpace(query)) - { - throw new ArgumentException(@"Query must have a value.", nameof(query)); - } this.version = version; - CreateQuery = query; } ///