Added version to page footer, minor tweaks.

This commit is contained in:
kay.one
2011-07-04 23:46:03 -07:00
parent 86c35d8c8c
commit 2a64014c96
11 changed files with 42 additions and 9 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Data;
using Migrator.Framework;
namespace NzbDrone.Core.Datastore.Migrations
{
[Migration(20110703)]
public class Migration20110703 : Migration
{
public override void Up()
{
}
public override void Down()
{
throw new NotImplementedException();
}
}
}