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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
this code blacksmith generate author scaffold ~/Desktop/blksm_cust_tpl/config.json --fields="name:string[50]"
blacksmith generate author scaffold ~/Desktop/blksm_cust_tpl/config.json --fields="name:string[50]"
Generates this:
public function up() { Schema::create('authors', function(Blueprint $table) { $table->increments('id'); $table->string[50]('name'); $table->timestamps(); }); }
Should be:
$table->string('name', 50);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this code
blacksmith generate author scaffold ~/Desktop/blksm_cust_tpl/config.json --fields="name:string[50]"
Generates this:
Should be:
$table->string('name', 50);
The text was updated successfully, but these errors were encountered: