add a missing comma

This commit is contained in:
Andreas Zweili 2017-07-09 18:39:26 +02:00
parent e058e9ab17
commit 7db40baaaa
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ if not exists (select * from sysobjects where name='members')
member_status_id int not null,
date_of_registration date not null,
person_id int,
constraint member_pk primary key (member_id)
constraint member_pk primary key (member_id),
constraint constraint_email_address unique (email_address)
);