Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for around (0.21 sec)

  1. migrator/migrator.go

    							foundColumn = columnType
    							break
    						}
    					}
    
    					if foundColumn == nil {
    						// not found, add column
    						if err = execTx.Migrator().AddColumn(value, dbName); err != nil {
    							return err
    						}
    					} else {
    						// found, smartly migrate
    						field := stmt.Schema.FieldsByDBName[dbName]
    						if err = execTx.Migrator().MigrateColumn(value, field, foundColumn); err != nil {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Fri Apr 26 07:15:49 GMT 2024
    - 29K bytes
    - Viewed (0)
  2. tests/query_test.go

    	}
    
    	if len(users) != 4 {
    		t.Errorf("Four users should be found, instead found %d", len(users))
    	}
    
    	DB.Select("*").Where("name LIKE ?", "subquery%").Where("age >= (?)", DB.
    		Select("AVG(age)").Table("users").Where("name LIKE ?", "subquery%")).Find(&users)
    
    	if len(users) != 2 {
    		t.Errorf("Two users should be found, instead found %d", len(users))
    	}
    }
    
    func TestSubQueryWithRaw(t *testing.T) {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
Back to top