id(); $table->string('name'); $table->string('description'); $table->boolean('active')->default(1); $table->unsignedInteger('major_version')->default(1); $table->unsignedInteger('minor_version')->default(0); $table->unsignedInteger('revision_version')->default(0); $table->timestamp('last_updated')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('programs'); } }