Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestMigrateIgnoreRelations (0.15 sec)

  1. tests/migrate_test.go

    				t.Errorf("shouldn't execute: sql=%s", sql)
    			}
    		},
    	}})
    
    	if err := session.AutoMigrate(&MyTable{}); err != nil {
    		t.Errorf("Failed, got error: %v", err)
    	}
    }
    
    func TestMigrateIgnoreRelations(t *testing.T) {
    	type RelationModel1 struct {
    		ID uint
    	}
    	type RelationModel2 struct {
    		ID uint
    	}
    	type RelationModel3 struct {
    		ID               uint
    		RelationModel1ID uint
    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