Add Mojang's status to dashboard
Also adds a Cache table to the database. Contains incomplete routes.
This commit is contained in:
@@ -27,9 +27,10 @@ class CreateAppointmentsTable extends Migration
|
||||
]);
|
||||
$table->enum('appointmentStatus', [
|
||||
'SCHEDULED',
|
||||
'CONCLUDED'
|
||||
'CONCLUDED' // TODO: Review whether this status is necessary
|
||||
])->default('SCHEDULED');
|
||||
$table->text('meetingNotes')->nullable();
|
||||
$table->boolean('userAccepted')->default(false);
|
||||
$table->longText('meetingNotes')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user