``` $table->smallInteger('year', 4)->unsigned(); ``` Вылетает ошибка при миграции! ``` $table->smallInteger('year')->unsigned(); ``` Полёт нормальный... Ответ нашёл тут: ``` public function integer($column, $autoIncrement = false, $unsigned = false) { return $this->addColumn('integer', $column, compact('autoIncrement', 'unsigned')); } ``` Итог: ``` $table->smallInteger('year')->lenght(4)->unsigned(); ```