increments('id'); $table->integer('created_by')->nullable(); $table->integer('profile_id')->nullable(); $table->string('title', 255)->nullable(); $table->text('description')->nullable(); $table->text('images')->nullable(); $table->text('videos')->nullable(); $table->integer('category_id')->nullable(); $table->text('achievement')->nullable(); $table->text('update_for')->nullable(); $table->integer('update_for_id')->nullable(); $table->integer('status')->nullable(); $table->text('meta_keyword')->nullable(); $table->text('meta_title')->nullable(); $table->text('meta_description')->nullable(); $table->text('hashtags')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('success_stories'); } }