本文整理汇总了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');
});
}
示例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');
});
}
示例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