//... public function up() { Schema::create('employees', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('city'); $table->decimal('salary', 5, 2); $table->timestamps(); }); } //...