This my code
Schema::create('employees', function (Blueprint $table) {
$table->id();
$table->string('first_name');
$table->text('second_name');
$table->string('emp_company')->unsigned();
$table->string('email');
$table->string('phone');
$table->timestamps();
$table->foreign('emp_company')->references('company_name')->on('companies');
});
here my error:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'unsigned not null, email
varchar(255) not null, phone
varchar(255) not null,' at line 1 (SQL: create table employees
(id
bigint unsigned not null auto_increment primary key, first_name
varchar(255) not null, second_name
text not null, emp_company
varchar(255) unsigned not null, email
varchar(255) not null, phone
varchar(255) not null, created_at
timestamp null, updated_at
timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci')
im stuck with this ..looking for sup Thank you.