Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for company_id (0.18 sec)

  1. tests/joins_test.go

    	if result.ID != user.ID {
    		t.Fatalf("result's id, %d, doesn't match user's id, %d", result.ID, user.ID)
    	}
    	// should find company
    	if result.Company.ID != *user.CompanyID {
    		t.Fatalf("result's id, %d, doesn't match user's company id, %d", result.Company.ID, *user.CompanyID)
    	}
    }
    
    func TestJoinWithSoftDeleted(t *testing.T) {
    	user := GetUser("TestJoinWithSoftDeletedUser", Config{Account: true, NamedPet: true})
    	DB.Create(&user)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                com-company-libs-a = "com.company:a:1.0"
                com-companylibs-b = "com.companylibs:b:1.0"
                com-companyLibs-c = "com.companyLibs:c:1.0"
    
                com-company-d = "com.company:d:1.0"
                com-company-e = "com.company:e:1.0"
    
                [bundles]
                com-company-libs-bundle = ["com-company-d"]
                com-companylibs-bundle = ["com-company-e"]
    
                [plugins]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    		}
    
    		if !m.HasTable(tableName) {
    			t.Fatalf("AutoMigrate expected %#v exist, but not.", tableName)
    		}
    
    		if !m.HasIndex(&DynamicUser{}, "CompanyID") {
    			t.Fatalf("Should have index on %s", "CompanyI.")
    		}
    
    		if !m.HasIndex(&DynamicUser{}, "DeletedAt") {
    			t.Fatalf("Should have index on deleted_at.")
    		}
    	}
    }
    
    // check column order after migration, flaky test
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  4. schema/relationship_test.go

    		},
    	})
    
    	checkStructRelation(t, &result, Relation{
    		Name: "Company", Type: schema.BelongsTo, Schema: "", FieldSchema: "Company",
    		References: []Reference{
    			{"ID", "Company", "CompanyID", "", "", false},
    		},
    	})
    }
    
    func TestSameForeignKey(t *testing.T) {
    	type UserAux struct {
    		gorm.Model
    		Aux  string
    		UUID string
    	}
    
    	type User struct {
    		gorm.Model
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top