dbfdg bigIncrements('id'); $table->integer('vender_id'); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->string('tax_number')->nullable(); $table->string('password')->nullable(); $table->string('contact')->nullable(); $table->string('avatar', 100)->default(''); $table->integer('created_by')->default(0); $table->integer('is_active')->default(1); $table->timestamp('email_verified_at')->nullable(); $table->string('billing_name')->nullable(); $table->string('billing_country')->nullable(); $table->string('billing_state')->nullable(); $table->string('billing_city')->nullable(); $table->string('billing_phone')->nullable(); $table->string('billing_zip')->nullable(); $table->text('billing_address')->nullable(); $table->string('shipping_name')->nullable(); $table->string('shipping_country')->nullable(); $table->string('shipping_state')->nullable(); $table->string('shipping_city')->nullable(); $table->string('shipping_phone')->nullable(); $table->string('shipping_zip')->nullable(); $table->text('shipping_address')->nullable(); $table->string('lang')->default('en'); $table->float('balance')->default('0.00'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('venders'); } }