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