1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
-
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
-
- class AddCommentsToAssessmentsTable extends Migration {
-
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::table('assessments', function(Blueprint $table)
- {
- $table
- ->string('comments')
- ->after('percentage')
- ->nullable();
- });
- }
-
-
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::table('assessments', function(Blueprint $table)
- {
- $table->dropColumn(array('comments'));
- });
- }
-
- }
|