Edited benuzer_id ... to user_id
This commit is contained in:
@@ -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']);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user