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
First of all, thanks a lot for this 'sublime' package, i really need it for my laravel projects. You just forgot a command : install migration table.
Under the folder Artisan in Packages folder :
{ "id" : "sublimeartisanmigrateinstall", "caption" : "Sublime Artisan Migrate:Install", "command" : "sublime_artisan_migrate_install" }
class SublimeArtisanMigrateInstallCommand(sublime_plugin.TextCommand): def run(self, edit): folder = self.view.window().folders()[0] os.chdir(folder) self.view.window().run_command("exec", { "cmd" : ["php", "artisan", "migrate:install"], "shell" : False, "working_dir" : folder})
sorry for my language, i'm a french speaker
The text was updated successfully, but these errors were encountered:
Hi,
I will update it soon :)
thanks
Sorry, something went wrong.
No branches or pull requests
First of all, thanks a lot for this 'sublime' package, i really need it for my laravel projects.
You just forgot a command : install migration table.
Under the folder Artisan in Packages folder :
{
"id" : "sublimeartisanmigrateinstall",
"caption" : "Sublime Artisan Migrate:Install",
"command" : "sublime_artisan_migrate_install"
}
class SublimeArtisanMigrateInstallCommand(sublime_plugin.TextCommand):
def run(self, edit):
folder = self.view.window().folders()[0]
os.chdir(folder)
self.view.window().run_command("exec", {
"cmd" : ["php", "artisan", "migrate:install"],
"shell" : False,
"working_dir" : folder})
sorry for my language, i'm a french speaker
The text was updated successfully, but these errors were encountered: