1234567891011121314151617181920212223242526272829303132333435 |
- <?php
-
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
-
- class AddActiveToObjectivesTable extends Migration {
-
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::table('objectives', function(Blueprint $table)
- {
- $table->boolean('active')->after('text')->default(1);
- });
- }
-
-
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::table('objectives', function(Blueprint $table)
- {
- $table->dropColumn(array('active'));
- });
- }
-
- }
|