diff --git a/database/migrations/2015_04_30_222953_add_student_table.php b/database/migrations/2015_04_30_222953_add_student_table.php index adbf821..fe6b8c7 100644 --- a/database/migrations/2015_04_30_222953_add_student_table.php +++ b/database/migrations/2015_04_30_222953_add_student_table.php @@ -19,6 +19,7 @@ public function up() $table->string('last_name'); $table->string('student_id'); $table->date('dob'); + $table->decimal('gpa', 5, 2); $table->timestamps(); }); }