increments('id'); $table->integer('user_id')->nullable(); $table->string('trade', 255)->nullable(); $table->integer('direction')->nullable(); $table->string('strike_value', 255)->nullable(); $table->string('strike_final_value', 255)->nullable(); $table->string('amount', 255)->nullable(); $table->string('receive_amount', 255)->nullable(); $table->dateTime('start_time')->nullable(); $table->dateTime('end_time')->nullable(); $table->integer('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bids'); } }