-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migration system & fix ssh key table constraint
- Loading branch information
Showing
3 changed files
with
99 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
package models | ||
|
||
import ( | ||
"fmt" | ||
"github.com/rs/zerolog/log" | ||
"gorm.io/gorm" | ||
) | ||
|
||
type MigrationVersion struct { | ||
ID uint `gorm:"primaryKey"` | ||
Version uint | ||
} | ||
|
||
func ApplyMigrations(db *gorm.DB) error { | ||
// Create migration table if it doesn't exist | ||
if err := db.AutoMigrate(&MigrationVersion{}); err != nil { | ||
log.Fatal().Err(err).Msg("Error creating migration version table") | ||
return err | ||
} | ||
|
||
// Get the current migration version | ||
var currentVersion MigrationVersion | ||
db.First(¤tVersion) | ||
|
||
// Define migrations | ||
migrations := []struct { | ||
Version uint | ||
Func func(*gorm.DB) error | ||
}{ | ||
{1, v1_modifyConstraintToSSHKeys}, | ||
// Add more migrations here as needed | ||
} | ||
|
||
// Apply migrations | ||
for _, m := range migrations { | ||
if m.Version > currentVersion.Version { | ||
tx := db.Begin() | ||
if err := tx.Error; err != nil { | ||
log.Fatal().Err(err).Msg("Error starting transaction") | ||
return err | ||
} | ||
|
||
if err := m.Func(db); err != nil { | ||
log.Fatal().Err(err).Msg(fmt.Sprintf("Error applying migration %d:", m.Version)) | ||
tx.Rollback() | ||
return err | ||
} else { | ||
if err = tx.Commit().Error; err != nil { | ||
log.Fatal().Err(err).Msg(fmt.Sprintf("Error committing migration %d:", m.Version)) | ||
return err | ||
} | ||
currentVersion.Version = m.Version | ||
db.Save(¤tVersion) | ||
log.Info().Msg(fmt.Sprintf("Migration %d applied successfully", m.Version)) | ||
} | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
// Modify the constraint on the ssh_keys table to use ON DELETE CASCADE | ||
func v1_modifyConstraintToSSHKeys(db *gorm.DB) error { | ||
createSQL := ` | ||
CREATE TABLE ssh_keys_temp ( | ||
id integer primary key, | ||
title text, | ||
content text, | ||
sha text, | ||
created_at integer, | ||
last_used_at integer, | ||
user_id integer | ||
constraint fk_users_ssh_keys references users(id) on update cascade on delete cascade | ||
); | ||
` | ||
|
||
if err := db.Exec(createSQL).Error; err != nil { | ||
return err | ||
} | ||
|
||
// Copy data from the old table to the new table | ||
copySQL := `INSERT INTO ssh_keys_temp SELECT * FROM ssh_keys;` | ||
if err := db.Exec(copySQL).Error; err != nil { | ||
return err | ||
} | ||
|
||
// Drop the old table | ||
dropSQL := `DROP TABLE ssh_keys;` | ||
if err := db.Exec(dropSQL).Error; err != nil { | ||
return err | ||
} | ||
|
||
// Rename the new table to the original table name | ||
renameSQL := `ALTER TABLE ssh_keys_temp RENAME TO ssh_keys;` | ||
return db.Exec(renameSQL).Error | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters