| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateProgressTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('progress', function (Blueprint $table) {
- $table->id();
- $table->integer('book');
- $table->integer('para');
- $table->string('lang',16);
- $table->integer('all_strlen');
- $table->integer('public_strlen');
- $table->timestamp('created_at')->useCurrent();
- $table->index(['book','para']);
- $table->index(['book','para','lang']);
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('progress');
- }
- }
|