HZ-HBO-ICT / it-conference

Official repository for the IT-Conference
https://weareinittogether.nl
MIT License
5 stars 0 forks source link

Backend: Enums in the database #448

Open v-stamenova opened 2 days ago

v-stamenova commented 2 days ago

Currently there are a couple of fields that can have values only between specific strings (type of presentation for example). Replace those with enums.

This can be implemented with an enum: $table->enum('type', ['opening', 'closing']);. Maybe next time?