Skip to content

Commit 384edca

Browse files
author
Socola Đại Ca
committed
update readme
1 parent ff5530f commit 384edca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ class CreateSocolaCmsBlogDatabase extends Migration
126126
public function up()
127127
{
128128

129-
Schema::create((new Post())->getTable(), function (Blueprint $table) {
129+
Schema::create(Post::getTableName(), function (Blueprint $table) {
130130
$table->id();
131131
$table->timestamps();
132132
});
133133

134-
Schema::create((new Category())->getTable(), function (Blueprint $table) {
134+
Schema::create(Category::getTableName(), function (Blueprint $table) {
135135
$table->id();
136136
$table->timestamps();
137137
});
@@ -144,8 +144,8 @@ class CreateSocolaCmsBlogDatabase extends Migration
144144
*/
145145
public function down()
146146
{
147-
Schema::dropIfExists((new Post())->getTable());
148-
Schema::dropIfExists((new Category())->getTable());
147+
Schema::dropIfExists(Post::getTableName());
148+
Schema::dropIfExists(Category::getTableName());
149149
}
150150
}
151151

0 commit comments

Comments
 (0)