Changeset 15399 for branches/HiveProjectManagement
- Timestamp:
- 10/04/17 13:46:40 (7 years ago)
- Location:
- branches/HiveProjectManagement
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.dbml
r15379 r15399 261 261 <Column Name="ParentProjectId" Type="System.Guid" DbType="UniqueIdentifier" CanBeNull="true" /> 262 262 <Column Name="DateCreated" Type="System.DateTime" DbType="DateTime NOT NULL" CanBeNull="false" /> 263 <Column Name="Name" Type="System.String" DbType="VarChar(MAX) " CanBeNull="false" />264 <Column Name="Description" Type="System.String" DbType="VarChar(MAX)" CanBeNull=" false" />263 <Column Name="Name" Type="System.String" DbType="VarChar(MAX) NOT NULL" CanBeNull="false" /> 264 <Column Name="Description" Type="System.String" DbType="VarChar(MAX)" CanBeNull="true" /> 265 265 <Column Name="OwnerUserId" Type="System.Guid" DbType="UniqueIdentifier NOT NULL" CanBeNull="false" /> 266 266 <Column Name="StartDate" Type="System.DateTime" DbType="DateTime NOT NULL" CanBeNull="false" /> -
branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs
r15379 r15399 5789 5789 } 5790 5790 5791 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="VarChar(MAX) ", CanBeNull=false)]5791 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="VarChar(MAX) NOT NULL", CanBeNull=false)] 5792 5792 public string Name 5793 5793 { … … 5809 5809 } 5810 5810 5811 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Description", DbType="VarChar(MAX)" , CanBeNull=false)]5811 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Description", DbType="VarChar(MAX)")] 5812 5812 public string Description 5813 5813 { -
branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/SQL Scripts/Initialize Hive Database.sql
r15378 r15399 155 155 [DateCreated] DateTime NOT NULL, 156 156 [Name] VarChar(MAX) NOT NULL, 157 [Description] VarChar(MAX) NOT NULL,157 [Description] VarChar(MAX), 158 158 [OwnerUserId] UniqueIdentifier NOT NULL, 159 159 [StartDate] DateTime NOT NULL, -
branches/HiveProjectManagement/HeuristicLab.Services.Hive/3.3/Converter.cs
r15379 r15399 121 121 OwnerUserId = source.OwnerUserId, 122 122 DateCreated = source.DateCreated, 123 ResourceNames = source.ResourceIds123 ProjectId = source.ProjectId 124 124 }; 125 125 } … … 139 139 target.OwnerUserId = source.OwnerUserId; 140 140 target.DateCreated = source.DateCreated; 141 target. ResourceIds = source.ResourceNames;141 target.ProjectId = source.ProjectId; 142 142 } 143 143 #endregion -
branches/HiveProjectManagement/HeuristicLab.Services.Hive/3.3/DataTransfer/Job.cs
r14185 r15399 32 32 public DateTime DateCreated { get; set; } 33 33 [DataMember] 34 public string ResourceNames{ get; set; }34 public Guid ProjectId { get; set; } 35 35 [DataMember] 36 36 public Permission Permission { get; set; } // the permission for the currently logged in user
Note: See TracChangeset
for help on using the changeset viewer.