diff --git a/database/migrations/2016_05_18_000000_teamwork_setup_tables.php b/database/migrations/2016_05_18_000000_teamwork_setup_tables.php index fe73b4c..b45c910 100755 --- a/database/migrations/2016_05_18_000000_teamwork_setup_tables.php +++ b/database/migrations/2016_05_18_000000_teamwork_setup_tables.php @@ -14,7 +14,7 @@ class TeamworkSetupTables extends Migration public function up() { Schema::table(config('teamwork.users_table'), function (Blueprint $table) { - $table->unsignedBigInteger('current_team_id') + $table->unsignedBigInteger('current_team') ->nullable() ->after('id'); }); @@ -83,4 +83,4 @@ public function down() Schema::drop(config('teamwork.team_invites_table')); Schema::drop(config('teamwork.teams_table')); } -} \ No newline at end of file +}