Skip to content

Commit 22fd2ae

Browse files
committed
Removed columns from snapshot table
1 parent c433167 commit 22fd2ae

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

pkg/services/sqlstore/migrations/dashboard_snapshot_mig.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,4 @@ func addDashboardSnapshotMigrations(mg *Migrator) {
5555
Postgres("SELECT 0;").
5656
Mysql("ALTER TABLE dashboard_snapshot MODIFY dashboard MEDIUMTEXT;"))
5757

58-
// add column to store creator of a dashboard snapshot
59-
mg.AddMigration("Add column created_by in dashboard_snapshot", NewAddColumnMigration(snapshotV5, &Column{
60-
Name: "created_by", Type: DB_BigInt, Nullable: true,
61-
}))
62-
63-
// add column to store updater of a dashboard snapshot
64-
mg.AddMigration("Add column updated_by in dashboard_snapshot", NewAddColumnMigration(snapshotV5, &Column{
65-
Name: "updated_by", Type: DB_BigInt, Nullable: true,
66-
}))
67-
6858
}

0 commit comments

Comments
 (0)