createTable( 'blog_article', [ 'id' => $this->primaryKey(), 'image_id' => $this->integer(), 'created_at' => $this->integer(), 'updated_at' => $this->integer(), 'deleted_at' => $this->integer(), 'sort' => $this->integer(), 'status' => $this->boolean(), 'author_id' => $this->integer(), ] ); } public function down() { $this->dropTable('blog_article'); } }