From 3b00c6aba77709becf1249afec816b50b0bafd57 Mon Sep 17 00:00:00 2001 From: aqeebimtiaz Date: Thu, 26 Apr 2018 16:43:19 +0800 Subject: [PATCH] added update company added create company --- .../migrations/2018_04_24_034401_create_companies_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/2018_04_24_034401_create_companies_table.php b/database/migrations/2018_04_24_034401_create_companies_table.php index eda932e..138fcf3 100644 --- a/database/migrations/2018_04_24_034401_create_companies_table.php +++ b/database/migrations/2018_04_24_034401_create_companies_table.php @@ -18,8 +18,8 @@ class CreateCompaniesTable extends Migration $table->string('company-name'); $table->string('registration-no'); $table->string('tax-no'); - $table->string('tel-no'); - $table->string('fax'); + $table->integer('tel-no'); + $table->integer('fax'); $table->string('address'); $table->string('city'); $table->string('postcode');