increments('id'); $table->string('name', 100)->nullable(); $table->text('title')->nullable(); $table->text('heading')->nullable(); $table->text('sub_heading')->nullable(); $table->text('abstract')->nullable(); $table->longText('content')->nullable(); $table->text('meta_title')->nullable(); $table->text('meta_keyword')->nullable(); $table->text('meta_description')->nullable(); $table->mediumText('banner')->nullable(); $table->text('images')->nullable(); $table->tinyInteger('compile')->nullable(); $table->string('view', 20)->nullable(); $table->string('category', 20)->nullable(); $table->integer('order')->nullable(); $table->string('slug', 200)->nullable(); $table->enum('status', ['Yes', 'No'])->nullable(); $table->string('upload_folder', 100)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('crm_page_pages'); } }