是否有一個管理MySQL模式更改的好工具?無論是獨立的,還是與CodeIgniter框架集成。 我在使用CakePHP的數據庫遷移工具的經驗帶着這個想法,所以類似的東西會很棒。CodeIgniter的數據庫模式遷移工具
2
A
回答
1
有一個Doctrine migrations項目等教義項目。
0
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_Add_blog extends CI_Migration {
public function up()
{
$this->dbforge->add_field(array(
'blog_id' => array(
'type' => 'INT',
'constraint' => 5,
'unsigned' => TRUE,
'auto_increment' => TRUE
),
'blog_title' => array(
'type' => 'VARCHAR',
'constraint' => '100',
),
'blog_description' => array(
'type' => 'TEXT',
'null' => TRUE,
),
));
$this->dbforge->create_table('blog');
}
public function down()
{
$this->dbforge->drop_table('blog');
}
檢查它從http://www.codeigniter.com/userguide2/libraries/migration.html
相關問題
- 1. 數據遷移工具和模式遷移工具
- 2. JPA實時數據庫模式遷移支持工具?
- 3. 遷移到MYSQL數據庫的工具
- 4. Phalcon開發工具 - 數據庫遷移
- 5. .NET數據庫遷移工具
- 6. 數據庫同步或遷移工具
- 7. .NET數據庫遷移工具包
- 8. Lift中的數據庫模式遷移
- 9. Azure數據遷移工具
- 10. 使用EnterpriseDB遷移工具將MySQL數據庫遷移到PostgreSQL
- 11. CodeIgniter的數據庫遷移錯誤
- 12. CodeIgniter遷移:更多的數據庫
- 13. 多數據庫模式遷移(php/mysql)
- 14. 將Codeigniter數據庫遷移到Wordpress
- 15. 你知道任何好的數據庫模式遷移工具嗎?
- 16. DocumentDB數據遷移工具,無法從數據庫遷移到db
- 17. MongoDB的數據遷移工具
- 18. 如何從CodeIgniter數據庫遷移到Laravel數據庫
- 19. 大規模WordPress的數據庫遷移
- 20. 開源數據遷移工具
- 21. 是否存在使用Hibernate指定模式的數據庫模式遷移工具?
- 22. Microsoft遷移數據庫工具不正確的字符錯誤
- 23. 數據庫遷移
- 24. 數據庫遷移
- 25. 數據庫遷移
- 26. 數據庫遷移
- 27. 在不同數據庫模式下遷移數據
- 28. 數據庫數據遷移
- 29. EF遷移 - 數據庫遷移的方式和時間
- 30. 耙:數據庫遷移不工作
這可以幫助你http://stackoverflow.com/questions/4089817/what-are-some-database-migrations-tools-database-change-management-for- php –