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


PHP Blueprint::timestamps方法代码示例

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


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

示例1: timestamps

 /**
  * 
  * @return $this
  */
 public function timestamps($timestamps = true)
 {
     $this->timestamps = $timestamps;
     if ($timestamps && !Schema::hasTable($this->table)) {
         $this->blueprint->timestamps();
     }
     return $this;
 }
开发者ID:boyhagemann,项目名称:framework,代码行数:12,代码来源:ModelBuilder.php

示例2: create

 /**
  * Create the table schema.
  *
  * @param Blueprint $table
  *
  * @return mixed
  */
 protected function create(Blueprint $table)
 {
     $table->increments('id');
     $table->unsignedInteger('job_id');
     $table->string('name');
     $table->unique(['job_id', 'name']);
     $table->timestamps();
 }
开发者ID:MarkVaughn,项目名称:illuminated,代码行数:15,代码来源:CreateJobTagsTable.php

示例3: create

 protected function create(Blueprint $table)
 {
     $table->create();
     $table->string('slug', 100)->primary();
     $table->string('name');
     $table->integer('position')->default(0);
     $table->boolean('conversations_enabled')->default(true);
     $table->timestamps();
 }
开发者ID:fluxbb,项目名称:core,代码行数:9,代码来源:Categories.php

示例4: create

 /**
  * Create the table schema.
  *
  * @param Blueprint $table
  *
  * @return mixed
  */
 protected function create(Blueprint $table)
 {
     $table->increments('id');
     $table->text('public_id');
     $table->text('secret_key');
     $table->string('type');
     $table->text('data');
     $table->timestamps();
 }
开发者ID:MarkVaughn,项目名称:illuminated,代码行数:16,代码来源:CreateKeyPairTable.php

示例5: buildDynamicTable

 protected function buildDynamicTable(Blueprint $table)
 {
     $reference_column = $this->getDynamicType() . '_id';
     $reference_table = $this->getDynamicType() . 's';
     $reference_index = 'FK_' . $this->getDynamicTableName() . '_' . $reference_column . '_' . $reference_table;
     $table->increments('id');
     $table->integer($reference_column)->unsigned()->nullable();
     $table->foreign($reference_column, $reference_index)->references('id')->on($reference_table)->onUpdate('CASCADE')->onDelete('SET NULL');
     $table->timestamps();
 }
开发者ID:sodacms,项目名称:sodacms,代码行数:10,代码来源:AbstractDynamicType.php

示例6: buildDynamicTable

 protected function buildDynamicTable(Blueprint $table)
 {
     $block_index = 'FK_' . $this->getDynamicTableName() . '_block_id_blocks';
     $page_index = 'FK_' . $this->getDynamicTableName() . '_page_id_pages';
     $table->increments('id');
     $table->integer('block_id')->unsigned()->nullable();
     $table->integer('page_id')->unsigned()->nullable();
     $table->integer('is_shared')->unsigned()->nullable();
     $table->foreign('block_id', $block_index)->references('id')->on('blocks')->onUpdate('CASCADE')->onDelete('SET NULL');
     $table->foreign('page_id', $page_index)->references('id')->on('pages')->onUpdate('CASCADE')->onDelete('SET NULL');
     $table->timestamps();
 }
开发者ID:sodacms,项目名称:sodacms,代码行数:12,代码来源:BlockType.php

示例7: create

 /**
  * Create the table schema.
  *
  * @param Blueprint $table
  *
  * @return mixed
  */
 protected function create(Blueprint $table)
 {
     $table->increments('id');
     $table->string('task');
     $table->text('data')->nullable();
     $table->string('state')->default(JobState::IDLE);
     $table->text('message')->nullable();
     $table->boolean('schedulable')->default(false);
     $table->integer('attempts')->default(0);
     $table->integer('retries')->default(0);
     $table->timestamp('started_at')->nullable();
     $table->timestamp('completed_at')->nullable();
     $table->timestamp('expires_at')->nullable();
     $table->timestamp('run_at')->nullable();
     $table->timestamps();
 }
开发者ID:MarkVaughn,项目名称:illuminated,代码行数:23,代码来源:CreateJobsTable.php

示例8: create

 protected function create(Blueprint $table)
 {
     $table->create();
     $table->increments('id');
     $table->string('category_slug', 100)->nullable()->index();
     $table->string('title');
     $table->string('poster', 200)->default('');
     $table->integer('posted')->unsigned()->default(0);
     $table->integer('first_post_id')->unsigned()->default(0);
     $table->integer('last_post')->unsigned()->default(0);
     $table->integer('last_post_id')->unsigned()->default(0);
     $table->string('last_poster', 200)->nullable();
     $table->integer('num_views')->unsigned()->default(0);
     $table->integer('num_replies')->unsigned()->default(0);
     $table->timestamps();
 }
开发者ID:fluxbb,项目名称:core,代码行数:16,代码来源:Conversations.php

示例9: ifNoUsersTable

 private function ifNoUsersTable(Blueprint $table)
 {
     $table->increments('id');
     $table->string('first_name');
     $table->string('last_name');
     $table->string('email')->unique();
     $table->string('avatar');
     $table->string('provider');
     $table->string('provider_id')->unique();
     $table->longText('provider_token');
     $table->string('password', 60)->nullable();
     $table->boolean('verified')->default(false);
     $table->string('gender')->nullable();
     $table->string('link');
     $table->rememberToken();
     $table->timestamps();
 }
开发者ID:jayaregalinada,项目名称:common,代码行数:17,代码来源:common_create_users_table.php

示例10: testAddingTimeStamps

 public function testAddingTimeStamps()
 {
     $blueprint = new Blueprint('users');
     $blueprint->timestamps();
     $statements = $blueprint->toSql($this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertEquals('alter table "users" add "created_at" datetime not null, add "updated_at" datetime not null', $statements[0]);
 }
开发者ID:hochanh,项目名称:Bootsoft-Bowling,代码行数:8,代码来源:SqlServerSchemaGrammarTest.php

示例11: testAddingTimeStamps

 public function testAddingTimeStamps()
 {
     $blueprint = new Blueprint('users');
     $blueprint->timestamps();
     $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertEquals('alter table users add ( created_at timestamp default 0 not null, updated_at timestamp default 0 not null )', $statements[0]);
 }
开发者ID:mickael83,项目名称:Laravel-OracleDB,代码行数:8,代码来源:OracleDBSchemaGrammarTest.php

示例12: buildBlueprints

 /**
  * @return array
  */
 public function buildBlueprints()
 {
     $blueprint = new Blueprint($this->table);
     if (!Schema::hasTable($this->table)) {
         $blueprint->increments('id');
         if ($this->timestamps) {
             $blueprint->timestamps();
         }
     }
     $blueprints[] = $blueprint;
     // Only add column that doesn't exist in the database yet
     foreach ($this->columns as $name => $column) {
         if (!Schema::hasColumn($this->table, $name)) {
             $blueprint->{$column->getType()}($name);
         }
     }
     foreach ($this->relations as $relation) {
         if ($relation->hasPivotTable()) {
             $table = $relation->getBlueprint()->getTable();
             if (!Schema::hasTable($table)) {
                 $blueprints[] = $relation->getBlueprint();
             }
         } else {
             if (!Schema::hasColumn($this->table, $relation->getColumn())) {
                 $blueprint->integer($relation->getColumn());
             }
         }
     }
     return $blueprints;
 }
开发者ID:boyhagemann,项目名称:model,代码行数:33,代码来源:ModelBuilder.php

示例13: activate

 /**
  * Creates the table.
  *
  * @param \Illuminate\Database\Schema\Blueprint $table
  */
 public function activate(Blueprint $table)
 {
     $table->increments('id');
     $table->string('address', 100);
     $table->timestamps();
 }
开发者ID:PrafullaKumarSahu,项目名称:example-plugin,代码行数:11,代码来源:Access.php


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