increments('id'); $table->integer('restaurant_id')->nullable(); $table->text('title')->nullable(); $table->float('amount')->nullable(); $table->date('date')->nullable(); $table->text('files')->nullable(); $table->text('upload_folder')->nullable(); $table->text('description')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('expenses'); } }