Laravel sql server change table name for schema
问题 I'm working on a project and i'm trying to set some tables with a schema on my SQL Server Data Base, so i manually change the tables name to the schema_name.table_name on the migration file and it worked, so here is an example: Schema::create('electoral.centro_votacions', function (Blueprint $table) { $table->bigInteger('id_estado'); $table->bigInteger('id_municipio'); $table->bigInteger('id_parroquia'); $table->bigInteger('id'); $table->string('nombre'); $table->longText('direccion'); $table