Updated http_api docs

This commit is contained in:
utkarshcmu
2016-01-27 22:02:33 -08:00
parent 6a1192172d
commit 58121d89fc
5 changed files with 33 additions and 31 deletions
@@ -98,8 +98,8 @@ func addDashboardMigration(mg *Migrator) {
Name: "updated_by", Type: DB_Int, Nullable: true,
}))
// add column to store creator of a dashboard
mg.AddMigration("Add column created_by in dashboard - v2", NewAddColumnMigration(dashboardV2, &Column{
Name: "created_by", Type: DB_Int, Nullable: true,
}))
// add column to store creator of a dashboard
mg.AddMigration("Add column created_by in dashboard - v2", NewAddColumnMigration(dashboardV2, &Column{
Name: "created_by", Type: DB_Int, Nullable: true,
}))
}