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
When converting a Laravel database schema to DBML format using php artisan dbml:parse, two issues occur:
php artisan dbml:parse
id bigint [not null, default: 'nextval('users_id_seq'::regclass)']
id bigint [not null, default: "nextval('users_id_seq'::regclass)"]
.txt
.dbml
The text was updated successfully, but these errors were encountered:
I will fix ASAP, Thanks for Open an Issue.
Sorry, something went wrong.
No branches or pull requests
Description
When converting a Laravel database schema to DBML format using
php artisan dbml:parse
, two issues occur:Incorrect Syntax in Default Values
Fix:
Incorrect File Extension
.txt
instead of.dbml
..dbml
for compatibility with DBML tools.The text was updated successfully, but these errors were encountered: