Beispiel #1
0
        /// <summary>
        ///   Marks a Migration version number as having been applied
        /// </summary>
        /// <param name = "version">The version number of the migration that was applied</param>
        public void MigrationApplied(long version)
        {
            CreateSchemaInfoTable();
            SchemaInfo.RecordMigration(version);

            _appliedMigrations.Add(version);
        }