| 1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8"?>
- <Schema Namespace="labModel" Alias="Self" xmlns="http://schemas.microsoft.com/ado/2008/09/edm" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation">
- <EntityContainer Name="labEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="users" EntityType="labModel.user" />
- </EntityContainer>
- <EntityType Name="user">
- <Key>
- <PropertyRef Name="id" />
- </Key>
- <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="email" Type="String" MaxLength="40" Unicode="true" FixedLength="true" />
- <Property Name="hashed_password" Type="String" MaxLength="250" Unicode="true" FixedLength="true" />
- <Property Name="created_at" Type="DateTime" />
- <Property Name="updated_at" Type="DateTime" />
- <Property Name="active" Type="Boolean" />
- </EntityType>
- </Schema>
|