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


PHP Migration::table方法代码示例

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


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

示例1: create

 public function create(Migration $migration)
 {
     $migration->table('Message');
     $migration->Int('id', 10)->autoincrement('id');
     $migration->String('name', 10);
     $migration->String('password', 10);
     return $migration;
 }
开发者ID:bilibiliSiki,项目名称:kakoi,代码行数:8,代码来源:Message.class.php

示例2: testSecondPatch

 /**
  * Test patching on a previous patch
  */
 public function testSecondPatch()
 {
     $migration = new Migration();
     $migration->table('ut_pop');
     $migration->initialize();
     DB::insert('db_deltas', array('id', 'file'))->values(array(1, '01-ut_pop-add_column'))->execute();
     $result = $migration->patch();
     $this->assertEquals(1, count($result[1]));
     $this->assertRegExp('/ut_pop/', $result[1][2]['descrip']);
     $this->assertTrue($result[1][2]['result']);
     $database = Database::instance();
     $columns = $database->list_columns('ut_pop');
     $this->assertArrayNotHasKey('editor', $columns);
     $this->assertArrayHasKey('modified', $columns);
 }
开发者ID:vimofthevine,项目名称:sink,代码行数:18,代码来源:UnitTest.php


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