increments('id'); $table->string('trader_name', 500)->nullable(); $table->string('website_url', 255)->nullable(); $table->text('description')->nullable(); $table->tinyInteger('account_type ')->nullable(); $table->string('email_address', 255)->nullable(); $table->string('name_salution', 30)->nullable(); $table->string('f_name', 100)->nullable(); $table->string('m_name', 100)->nullable(); $table->string('l_name', 100)->nullable(); $table->string('country_residence', 255)->nullable(); $table->string('phone_numbe', 30)->nullable(); $table->tinyInteger('role_type')->nullable(); $table->string('base_currency', 255)->nullable(); $table->string('investor_account _username', 255)->nullable(); $table->string('photo', 50)->nullable(); $table->text('public_info')->nullable(); $table->text('broker_ids')->nullable(); $table->integer('is_exist_acc_broker')->nullable(); $table->text('is_retr_trade_his')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('traders'); } }