1public function up()
2{
3 Schema::table('table', function($table) {
4 $table->dropColumn('column_name');
5 });
6}
1Schema::table('users', function($table) {
2 $table->string("title");
3 $table->text("description");
4 $table->timestamps();
5});