- Timestamp:
- 10/04/17 13:46:40 (7 years ago)
- Location:
- branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3
- Files:
-
- 3 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,
Note: See TracChangeset
for help on using the changeset viewer.