如何处理两种文件类型?

时间:2016-07-09 17:00:37

标签: mysql database database-design

我正在为Document Management System设计我的import {Injectable} from '@angular/core'; import {AngularFire} from 'angularfire2'; import {Observable} from 'rxjs/Observable'; //this current code is not making sense. Any suggestion //to make it an Observable for Signin and Logout? @Injectable() export class AuthService { isAuthenticated:boolean = false; authObj: Observable<any>; constructor(public af:AngularFire) { this.authObj = af.auth; } signin() { //I want to make AngularFire2 Authentication token/obj an Observable. So this will keep emitting an Observable //that return True.... after successful Federated Google Signin. I want my other component to subscribe to this Observable. return this.authObj.do(val => this.af.auth.login()); this.isAuthenticated = true; } } 表。我有documentsusers之间的多对多关系以及documents的联结表我需要其他人的意见,因为我有两种类型的文件,我将要实施。< / p>

  • 请求
  • 分辨率

我的计划在这里我要将它们放在usersdocuments表中,而不是做两张桌子。我需要确定用户使用的文档类型?我将使用什么样的数据类型来实现它?

SC

1 个答案:

答案 0 :(得分:0)

  

我将使用哪种数据类型来实现此目的?避免   使用BIT的混淆。

是的,您可以使用BIT作为该列的数据类型,如

Request

由于Resolutionselect * from documents where IsRequest = 'true'; // want to fetch only Request type 只有两种类型,您可以通过说

来解决这个问题。
{{1}}