`php artisan make:migration add_colum` add ``` php public function up() { Schema::table('rooms', function($table) { $table->char('status',4); //B: busy, N: booked, A: avaiable }); } ``` then `php artisan migrate`
php artisan make:migration add_columadd
then
php artisan migrate