2020-06-09 08:45:16 +00:00
|
|
|
<?php
|
2020-07-28 06:34:10 +00:00
|
|
|
//Migrations acts as a version control for the database allowing you to modify the app's database schema
|
2020-06-09 08:45:16 +00:00
|
|
|
|
2020-07-28 06:34:10 +00:00
|
|
|
//allows use of necessary libraries
|
2020-06-09 08:45:16 +00:00
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
class AlterFeedbacks extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|