- Timestamp:
- 11/29/12 09:57:15 (12 years ago)
- Location:
- branches/RuntimeOptimizer
- Files:
-
- 5 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/RuntimeOptimizer
- Property svn:mergeinfo changed
/branches/SlaveShutdown (added) merged: 8944-8945,8949,8951,8953-8954 /trunk/sources (added) merged: 8946-8948,8950,8952,8957,8960,8962-8970
- Property svn:mergeinfo changed
-
branches/RuntimeOptimizer/HeuristicLab.Services.Hive.DataAccess/3.3/HeuristicLab.Services.Hive.DataAccess-3.3.csproj
r8600 r8971 99 99 <None Include="Plugin.cs.frame" /> 100 100 <Compile Include="Enums\Command.cs" /> 101 <Compile Include="Enums\DowntimeType.cs" /> 101 102 <Compile Include="Enums\CpuArchitecture.cs" /> 102 103 <Compile Include="Plugin.cs" /> … … 156 157 </PropertyGroup> 157 158 <PropertyGroup> 158 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)159 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 159 160 set ProjectDir=$(ProjectDir) 160 161 set SolutionDir=$(SolutionDir) … … 162 163 163 164 call PreBuildEvent.cmd</PreBuildEvent> 164 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">165 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 165 166 export ProjectDir=$(ProjectDir) 166 167 export SolutionDir=$(SolutionDir) -
branches/RuntimeOptimizer/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.dbml
r7916 r8971 95 95 <Column Name="Recurring" Type="System.Boolean" DbType="Bit" CanBeNull="false" /> 96 96 <Column Name="RecurringId" Type="System.Guid" DbType="UniqueIdentifier" CanBeNull="false" /> 97 <Column Name="DowntimeType" Storage="_Type" Type="global::HeuristicLab.Services.Hive.DataAccess.DowntimeType" DbType="VarChar(MAX)" CanBeNull="false" /> 97 98 <Association Name="Resource_Downtime" Member="Resource" ThisKey="ResourceId" OtherKey="ResourceId" Type="Resource" IsForeignKey="true" DeleteRule="CASCADE" /> 98 99 </Type> -
branches/RuntimeOptimizer/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs
r7916 r8971 3 3 // <auto-generated> 4 4 // This code was generated by a tool. 5 // Runtime Version:4.0.30319. 2695 // Runtime Version:4.0.30319.17929 6 6 // 7 7 // Changes to this file may cause incorrect behavior and will be lost if … … 2153 2153 private System.Guid _RecurringId; 2154 2154 2155 private global::HeuristicLab.Services.Hive.DataAccess.DowntimeType _Type; 2156 2155 2157 private EntityRef<Resource> _Resource; 2156 2158 … … 2173 2175 partial void OnRecurringIdChanging(System.Guid value); 2174 2176 partial void OnRecurringIdChanged(); 2177 partial void OnDowntimeTypeChanging(global::HeuristicLab.Services.Hive.DataAccess.DowntimeType value); 2178 partial void OnDowntimeTypeChanged(); 2175 2179 #endregion 2176 2180 … … 2321 2325 this.SendPropertyChanged("RecurringId"); 2322 2326 this.OnRecurringIdChanged(); 2327 } 2328 } 2329 } 2330 2331 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Type", DbType="VarChar(MAX)", CanBeNull=false)] 2332 public global::HeuristicLab.Services.Hive.DataAccess.DowntimeType DowntimeType 2333 { 2334 get 2335 { 2336 return this._Type; 2337 } 2338 set 2339 { 2340 if ((this._Type != value)) 2341 { 2342 this.OnDowntimeTypeChanging(value); 2343 this.SendPropertyChanging(); 2344 this._Type = value; 2345 this.SendPropertyChanged("DowntimeType"); 2346 this.OnDowntimeTypeChanged(); 2323 2347 } 2324 2348 } -
branches/RuntimeOptimizer/HeuristicLab.Services.Hive.DataAccess/3.3/SQL Scripts/Initialize Hive Database.sql
r7916 r8971 75 75 [Recurring] Bit NOT NULL, 76 76 [RecurringId] UniqueIdentifier NOT NULL, 77 [DowntimeType] VarChar(MAX) NOT NULL, 77 78 CONSTRAINT [PK_dbo.Downtime] PRIMARY KEY ([DowntimeId]) 78 79 )
Note: See TracChangeset
for help on using the changeset viewer.