From efb7b61414de9b3deffd976ab89179c9745d1e49 Mon Sep 17 00:00:00 2001 From: Gayan Date: Thu, 17 Jul 2014 15:21:16 +0800 Subject: [PATCH] Change assigned_roles table to user_roles --- src/commands/MigrationCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/MigrationCommand.php b/src/commands/MigrationCommand.php index d476bb74..c920a5b3 100644 --- a/src/commands/MigrationCommand.php +++ b/src/commands/MigrationCommand.php @@ -42,8 +42,8 @@ public function fire() $roles_table = lcfirst($this->option('table')); $this->line(''); - $this->info( "Tables: $roles_table, assigned_roles, permissions, permission_role" ); - $message = "An migration that creates '$roles_table', 'assigned_roles', 'permissions', 'permission_role'". + $this->info( "Tables: $roles_table, user_roles, permissions, permission_role" ); + $message = "An migration that creates '$roles_table', 'user_roles', 'permissions', 'permission_role'". " tables will be created in app/database/migrations directory"; $this->comment( $message );