Well, I have a web application and I want to create a teable with Schema Builder, and I cannot Create a migration in a shared hosting, what can you suggest to make a table with Schema?
Schema::create('users', function($table)
{
$table->increments('id');
});
ps. I want to use specifically Laravel's Schema Builder to create tables