Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tests/migrate_test.go

    		t.Fatalf("Failed to drop table, got error %v", err)
    	}
    
    	if err := DB.AutoMigrate(&UserWithIndexComment{}); err != nil {
    		t.Fatalf("Failed to auto migrate, but got error %v", err)
    	}
    }
    
    func TestMigrateWithUniqueIndex(t *testing.T) {
    	type UserWithUniqueIndex struct {
    		ID    int
    		Name  string    `gorm:"size:20;index:idx_name,unique"`
    		Date  time.Time `gorm:"index:idx_name,unique"`
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top