File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -126,12 +126,12 @@ class CreateSocolaCmsBlogDatabase extends Migration
126
126
public function up()
127
127
{
128
128
129
- Schema::create((new Post())->getTable (), function (Blueprint $table) {
129
+ Schema::create(Post::getTableName (), function (Blueprint $table) {
130
130
$table->id();
131
131
$table->timestamps();
132
132
});
133
133
134
- Schema::create((new Category())->getTable (), function (Blueprint $table) {
134
+ Schema::create(Category::getTableName (), function (Blueprint $table) {
135
135
$table->id();
136
136
$table->timestamps();
137
137
});
@@ -144,8 +144,8 @@ class CreateSocolaCmsBlogDatabase extends Migration
144
144
*/
145
145
public function down()
146
146
{
147
- Schema::dropIfExists((new Post())->getTable ());
148
- Schema::dropIfExists((new Category())->getTable ());
147
+ Schema::dropIfExists(Post::getTableName ());
148
+ Schema::dropIfExists(Category::getTableName ());
149
149
}
150
150
}
151
151
You can’t perform that action at this time.
0 commit comments