change street numbers to varchar

in some places streetnumbers contain letters
This commit is contained in:
Andreas Zweili 2017-07-20 20:36:26 +02:00
parent fbe0fa6b4d
commit 81024b6b8b
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ if not exists (select * from sysobjects where name='persons')
lastname varchar(50) not null,
date_of_birth date not null,
streetname varchar(50) not null,
streetnumber int,
streetnumber varchar(4) not null,
city_id int not null,
country_id int not null,
constraint person_pk primary key (person_id),