laravel store long encrypted keys migration code example
Example: laravel migration remove column
public function up()
{
Schema::table('table', function($table) {
$table->dropColumn('column_name');
});
}
public function up()
{
Schema::table('table', function($table) {
$table->dropColumn('column_name');
});
}