当前位置: 首页>>代码示例>>PHP>>正文


PHP Article::getTableName方法代码示例

本文整理汇总了PHP中app\models\Article::getTableName方法的典型用法代码示例。如果您正苦于以下问题:PHP Article::getTableName方法的具体用法?PHP Article::getTableName怎么用?PHP Article::getTableName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\models\Article的用法示例。


在下文中一共展示了Article::getTableName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: up

 /**
  * Run the migrations.
  *
  * @return void
  */
 public function up()
 {
     Schema::create(\App\Models\ArticlePermalink::getTableName(), function (Blueprint $table) {
         $table->string('permalink', 255)->primary();
         $table->uuid('article_id')->index()->nullable();
         $table->dateTime('created_at');
         $table->dateTime('updated_at')->nullable();
         $table->foreign('article_id')->references('article_id')->on(\App\Models\Article::getTableName())->onDelete('cascade');
     });
 }
开发者ID:TFidryForks,项目名称:spira,代码行数:15,代码来源:2015_07_21_144631_create_articles_permalinks_table.php

示例2: up

 /**
  * Run the migrations.
  *
  * @return void
  */
 public function up()
 {
     Schema::create(\App\Models\ArticleMeta::getTableName(), function (Blueprint $table) {
         $table->uuid('article_id');
         $table->string('meta_name', 255);
         $table->string('meta_content', 255)->nullable();
         $table->string('meta_property', 255)->nullable();
         $table->dateTime('created_at');
         $table->dateTime('updated_at')->nullable();
         $table->primary(['article_id', 'meta_name']);
         $table->foreign('article_id')->references('article_id')->on(\App\Models\Article::getTableName())->onDelete('cascade');
     });
 }
开发者ID:TFidryForks,项目名称:spira,代码行数:18,代码来源:2015_08_03_082813_create_article_meta_table.php

示例3: down

 /**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     Schema::table(\App\Models\Article::getTableName(), function (Blueprint $table) {
         $table->dropForeign('articles_permalink_foreign');
     });
 }
开发者ID:TFidryForks,项目名称:spira,代码行数:11,代码来源:2015_07_28_005041_add_permalink_foreign_key_to_articles_table.php


注:本文中的app\models\Article::getTableName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。