| 1234567891011121314151617181920212223242526272829 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateLevelTable extends Migration {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up() {
- Schema::create('level', function(Blueprint $table) {
- $table->increments('id');
- $table->unsignedTinyInteger('level')->comment('等级');
- $table->string('name', 100)->comment('等级名称');
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down() {
- Schema::dropIfExists('level');
- }
- }
|