Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addColumns (0.18 sec)

  1. pkg/controller/volume/attachdetach/util/util.go

    		return false
    	}
    	return defaultAction
    }
    
    // ProcessPodVolumes processes the volumes in the given pod and adds them to the
    // desired state of the world if addVolumes is true, otherwise it removes them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/attach_detach_controller.go

    		return
    	}
    
    	volumeActionFlag := util.DetermineVolumeAction(
    		pod,
    		adc.desiredStateOfWorld,
    		true /* default volume action */)
    
    	util.ProcessPodVolumes(logger, pod, volumeActionFlag, /* addVolumes */
    		adc.desiredStateOfWorld, &adc.volumePluginMgr, adc.pvcLister, adc.pvLister, adc.csiMigratedPluginManager, adc.intreeToCSITranslator)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. migrator/migrator.go

    			newTable = m.CurrentTable(stmt)
    		} else {
    			return err
    		}
    	}
    
    	return m.DB.Exec("ALTER TABLE ? RENAME TO ?", oldTable, newTable).Error
    }
    
    // AddColumn create `name` column for value
    func (m Migrator) AddColumn(value interface{}, name string) error {
    	return m.RunWithValue(value, func(stmt *gorm.Statement) error {
    		// avoid using the same name field
    		if stmt.Schema == nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    						columnType)
    				}
    			}
    		}
    	}
    
    	type NewColumnStruct struct {
    		gorm.Model
    		Name    string
    		NewName string
    	}
    
    	if err := DB.Table("column_structs").Migrator().AddColumn(&NewColumnStruct{}, "NewName"); err != nil {
    		t.Fatalf("Failed to add column, got %v", err)
    	}
    
    	if !DB.Table("column_structs").Migrator().HasColumn(&NewColumnStruct{}, "NewName") {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top