1234567891011121314151617181920212223242526272829303132 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class AddInfoToStudents extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::table('students', function (Blueprint $table) {
- $table->text('remark')->nullable()->after('addr')->comment('备注');
- $table->string('finger_number', 200)->nullable()->after('remark')->comment('指纹编号');
- $table->rememberToken();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- //
- }
- }
|