increments('id'); $table->integer('company_id')->nullable(); $table->integer('branch_id')->nullable(); $table->string('code', 20)->nullable(); $table->date('date')->nullable(); $table->string('ref', 20)->nullable(); $table->text('narration')->nullable(); $table->text('note')->nullable(); $table->text('notes')->nullable(); $table->text('docs')->nullable(); $table->enum('status', ['Yes', 'No'])->nullable(); $table->integer('user_id')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_account_journals'); } }