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


PHP Blueprint::integer方法代码示例

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


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

示例1: create

 protected function create(Blueprint $table)
 {
     $table->create();
     $table->integer('user_id')->unsigned();
     $table->integer('topic_id')->unsigned();
     $table->primary(array('user_id', 'topic_id'));
 }
开发者ID:fluxbb,项目名称:core,代码行数:7,代码来源:TopicSubscriptions.php

示例2: create

 protected function create(Blueprint $table)
 {
     $table->create();
     $table->integer('group_id')->unsigned();
     $table->integer('forum_id')->unsigned();
     $table->boolean('read_forum')->default(true);
     $table->boolean('post_replies')->default(true);
     $table->boolean('post_topics')->default(true);
     $table->primary(array('group_id', 'forum_id'));
 }
开发者ID:fluxbb,项目名称:core,代码行数:10,代码来源:ForumPerms.php

示例3: _schema_imageModel

 public static function _schema_imageModel(Blueprint $table)
 {
     $table->string('image');
     $table->string('url');
     $table->unsignedInteger('order')->default(0);
     $table->string('type')->default('default');
     $table->integer('width');
     $table->integer('height');
     $table->morphs('imageable');
     return $table;
 }
开发者ID:xjtuwangke,项目名称:laravel-bundles,代码行数:11,代码来源:ImageModel.php

示例4: create

 protected function create(Blueprint $table)
 {
     $table->create();
     $table->string('id', 40);
     $table->integer('user_id')->unsigned()->default(1);
     $table->integer('created')->unsigned()->default(0);
     $table->integer('last_activity')->unsigned()->default(0);
     $table->string('last_ip', 200)->default('0.0.0.0');
     $table->text('payload');
     $table->primary('id');
     $table->index('user_id');
 }
开发者ID:fluxbb,项目名称:core,代码行数:12,代码来源:Sessions.php

示例5: 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

示例6: getBlueprint

 /**
  * @return Blueprint|null
  */
 public function getBlueprint()
 {
     if ($this->hasPivotTable()) {
         $left = $this->buildLeftColumnName();
         $right = $this->getColumn();
         $table = $this->getTable();
         $blueprint = new Blueprint($table);
         $blueprint->increments('id');
         $blueprint->integer($left);
         $blueprint->integer($right);
         return $blueprint;
     }
 }
开发者ID:boyhagemann,项目名称:model,代码行数:16,代码来源:Relation.php

示例7: _schema_chinaArea

 /**
  * @param Blueprint $table
  * @return Blueprint
  */
 public static function _schema_chinaArea(Blueprint $table)
 {
     $table->integer('areano');
     $table->integer('parentno');
     $table->string('name');
     $table->string('province')->nullable();
     $table->string('city')->nuallable();
     $table->string('distinct')->nullable();
     $table->enum('flag', ['国家', '省', '市', '区/县']);
     $table->integer('sort')->default(99);
     $table->integer('zipcode')->default(0);
     return $table;
 }
开发者ID:xjtuwangke,项目名称:laravel-bundles,代码行数:17,代码来源:China.php

示例8: _schema_usermodel

 public static function _schema_usermodel(\Illuminate\Database\Schema\Blueprint $table)
 {
     $table->string('username', 100);
     $table->string('nickname', 30)->unique();
     $table->string('email', 100);
     $table->string('mobile', 20);
     $table->integer('exp')->default(0);
     $table->integer('points')->default(0);
     $table->date('birthdate')->nullable();
     $table->enum('gender', ['男', '女', '保密'])->default('保密');
     $table->string('password', 100);
     $table->string('remember_token', 100);
     $table->timestamp('last_login');
     return $table;
 }
开发者ID:xjtuwangke,项目名称:laravel-models,代码行数:15,代码来源:UserModel.php

示例9: create

 protected function create(Blueprint $table)
 {
     $table->create();
     $table->increments('id');
     $table->string('title', 50)->default('');
     $table->integer('parent_group_id')->unsigned()->nullable();
 }
开发者ID:fluxbb,项目名称:core,代码行数:7,代码来源:Groups.php

示例10: create

 protected function create(Blueprint $table)
 {
     $table->create();
     $table->increments('id');
     $table->string('poster', 200)->default('');
     $table->integer('poster_id')->unsigned()->default(1);
     $table->string('poster_ip', 39)->nullable();
     $table->text('message')->nullable();
     $table->boolean('hide_smilies')->default(false);
     $table->integer('posted')->unsigned()->default(0);
     $table->integer('edited')->unsigned()->nullable();
     $table->string('edited_by', 200)->nullable();
     $table->integer('conversation_id')->unsigned();
     $table->index('conversation_id');
     $table->index(['poster_id', 'conversation_id']);
 }
开发者ID:fluxbb,项目名称:core,代码行数:16,代码来源:Posts.php

示例11: 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

示例12: activate

 /**
  * Activates the table.
  *
  * @param \Illuminate\Database\Schema\Blueprint $table
  */
 public function activate(Blueprint $table)
 {
     $table->increments('id');
     $table->string('title');
     $table->string('handle');
     $table->string('url');
     $table->integer('set_id');
 }
开发者ID:PrafullaKumarSahu,项目名称:wordpress-socializr,代码行数:13,代码来源:ProfilesTable.php

示例13: create

 protected function create(Blueprint $table)
 {
     $table->create();
     $table->increments('id');
     $table->integer('group_id')->unsigned();
     $table->string('name', 50);
     $table->boolean('value');
 }
开发者ID:fluxbb,项目名称:core,代码行数:8,代码来源:GroupPermissions.php

示例14: _schema_ResetPasswordTokens

 /**
  * @param Blueprint $table
  * @return Blueprint
  */
 public static function _schema_ResetPasswordTokens(Blueprint $table)
 {
     $table->string('key')->index();
     $table->string('token');
     $table->integer('user_id')->index();
     $table->dateTime('expires_at');
     return $table;
 }
开发者ID:xjtuwangke,项目名称:laravel-bundles,代码行数:12,代码来源:ResetPasswordTokens.php

示例15: 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


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