Edited benuzer_id ... to user_id

This commit is contained in:
chrosey
2017-06-15 12:46:34 +02:00
parent a7414e8d66
commit e6c4eb2009
6 changed files with 10 additions and 36 deletions
@@ -13,7 +13,7 @@ class UpdateBenutzerTable extends Migration
*/
public function up()
{
Schema::table('benutzer', function (Blueprint $table){
Schema::table('users', function (Blueprint $table){
$table->string('anzeigename',20)->unique();
$table->string('telefon',20);
});
@@ -26,7 +26,7 @@ class UpdateBenutzerTable extends Migration
*/
public function down()
{
Schema::table('benutzer', function (Blueprint $table){
Schema::table('users', function (Blueprint $table){
$table->dropColumn(['anzeigename','telefon']);
});
}