Here is my DDL statement:
create table if not exists 'fmrecruit'.'resource_type'(
'ID' bigint not null auto_increment,
'type' bigint null,
'first_name' varchar(30) not null,
'middle_name' varchar(30) null,
'last_name' varchar(30) null,
'org_name' varchar(45) null,
'notes' varchar(256) null,
'primary_skills' varchar(256) not null,
'seconadary_skills' varchar(256) null,
'created_by' varchar(25) not null,
'created_date' timestamp not null,
'updated_by' varchar(25) null,
'updated_date' timestamp null,
primary key('ID'),
index resource_type_fk_idx('type' asc),
constraint resource_type_fk foreign key('type') refrences fmrecruit.resource_type('ID')
on delete no action
on update no action)
engine=innodb;