Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/28/12 10:49:02 (12 years ago)
Author:
jkarder
Message:

#1712: added user queue used to schedule tasks

Location:
branches/HiveTaskScheduler/HeuristicLab.Services.Hive.DataAccess/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveTaskScheduler/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.dbml

    r8687 r8707  
    206206    <Type Name="UserPriority">
    207207      <Column Name="UserId" Type="System.Guid" DbType="UniqueIdentifier NOT NULL" IsPrimaryKey="true" CanBeNull="false" />
     208      <Column Name="DateEnqueued" Type="System.DateTime" DbType="DateTime" CanBeNull="false" />
    208209    </Type>
    209210  </Table>
  • branches/HiveTaskScheduler/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.dbml.layout

    r8687 r8707  
    241241      </nodes>
    242242    </associationConnector>
    243     <classShape Id="f9e8867f-fd15-4a72-8ca4-4f02cd3f141f" absoluteBounds="4.125, 5.5, 2, 1.0016910807291666">
     243    <classShape Id="f9e8867f-fd15-4a72-8ca4-4f02cd3f141f" absoluteBounds="4.125, 5.5, 2, 1.1939925130208327">
    244244      <DataClassMoniker Name="/HiveDataContext/UserPriority" />
    245245      <nestedChildShapes>
    246         <elementListCompartment Id="ee41f516-7d9c-4a1d-a1b8-bbe00a6ffea8" absoluteBounds="4.14, 5.96, 1.9700000000000002, 0.44169108072916663" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" />
     246        <elementListCompartment Id="ee41f516-7d9c-4a1d-a1b8-bbe00a6ffea8" absoluteBounds="4.14, 5.96, 1.9700000000000002, 0.63399251302083326" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" />
    247247      </nestedChildShapes>
    248248    </classShape>
  • branches/HiveTaskScheduler/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs

    r8687 r8707  
    33// <auto-generated>
    44//     This code was generated by a tool.
    5 //     Runtime Version:4.0.30319.269
     5//     Runtime Version:4.0.30319.17929
    66//
    77//     Changes to this file may cause incorrect behavior and will be lost if
     
    44334433    private System.Guid _UserId;
    44344434   
     4435    private System.DateTime _DateEnqueued;
     4436   
    44354437    #region Extensibility Method Definitions
    44364438    partial void OnLoaded();
     
    44394441    partial void OnUserIdChanging(System.Guid value);
    44404442    partial void OnUserIdChanged();
     4443    partial void OnDateEnqueuedChanging(System.DateTime value);
     4444    partial void OnDateEnqueuedChanged();
    44414445    #endregion
    44424446   
     
    44664470    }
    44674471   
     4472    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DateEnqueued", DbType="DateTime")]
     4473    public System.DateTime DateEnqueued
     4474    {
     4475      get
     4476      {
     4477        return this._DateEnqueued;
     4478      }
     4479      set
     4480      {
     4481        if ((this._DateEnqueued != value))
     4482        {
     4483          this.OnDateEnqueuedChanging(value);
     4484          this.SendPropertyChanging();
     4485          this._DateEnqueued = value;
     4486          this.SendPropertyChanged("DateEnqueued");
     4487          this.OnDateEnqueuedChanged();
     4488        }
     4489      }
     4490    }
     4491   
    44684492    public event PropertyChangingEventHandler PropertyChanging;
    44694493   
  • branches/HiveTaskScheduler/HeuristicLab.Services.Hive.DataAccess/3.3/SQL Scripts/Initialize Hive Database.sql

    r8687 r8707  
    123123CREATE TABLE [UserPriority](
    124124  [UserId] UniqueIdentifier NOT NULL,
     125  [DateEnqueued] DateTime NOT NULL,
    125126  CONSTRAINT [PK_UserPriority] PRIMARY KEY ([UserId])
    126127  )
Note: See TracChangeset for help on using the changeset viewer.