2. DotNetNote.Database 프로젝트의 dbo 폴더의 Tables 폴더에 있는 Users.sql 파일을 연다. Users 테이블을 생성하는 구문은 다음과 같으며 이 sql 파일이 없으면 새롭게 생성한다.
▼ DotNetNote.Database/dbo/Tables/Users.sql
–[0] Users 테이블 생성
Create Table dbo.Users
(
UID Int Identity(1, 1) Primary Key Not Null,
UserID NVarChar(25) Not Null,
[Password] NVarChar(20) Not Null
– 필요한 항목이 있으면, 언제든 추가
)
Go