12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
-
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- use App\Semester;
-
- class CreateSemestersTable extends Migration
- {
-
-
- public function up()
- {
- Schema::create('semesters', function (Blueprint $table) {
- $table->char('code', 3)->primary();
- $table->string('alpha');
- });
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
-
-
-
- public function down()
- {
- Schema::dropIfExists('semesters');
- }
- }
|