We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Laravel Blueprint table builder does not support TIME(3). (More detailed version of time).
TIME(3)
Schema::create('records', function (Blueprint $table) { $table->time('some_time', 3); // to include milliseconds });
I have to do:
DB::statement( <<<'TAG' ALTER TABLE records MODIFY duration TIME(3); TAG );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
The Laravel Blueprint table builder does not support
TIME(3)
. (More detailed version of time).Steps To Reproduce:
I have to do:
The text was updated successfully, but these errors were encountered: