Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Fatal (0.12 sec)

  1. tests/migrate_test.go

    		t.Fatalf("Failed to rename table, got error %v", err)
    	}
    
    	if !DB.Migrator().HasTable("new_table_structs") {
    		t.Fatal("should found renamed table")
    	}
    
    	DB.Migrator().DropTable("new_table_structs")
    
    	if DB.Migrator().HasTable(&NewTableStruct{}) {
    		t.Fatal("should not found dropped table")
    	}
    }
    
    func TestMigrateWithQuotedIndex(t *testing.T) {
    	if DB.Dialector.Name() != "mysql" {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
Back to top