文档
Welcome! 安装(Installation) 示例列表(List of examples) 依赖注入与服务定位器(Dependency Injection/Service Location) MVC 架构(The MVC Architecture) 使用控制器(Using Controllers) 使用模型(Working with Models) 模型元数据(Models Meta-Data) 事务管理(Model Transactions) Phalcon 查询语言(Phalcon Query Language (PHQL)) 缓存对象关系映射(Caching in the ORM) 对象文档映射 ODM (Object-Document Mapper) 使用视图(Using Views) 视图助手(View Helpers) 资源文件管理(Assets Management) Volt 模版引擎(Volt: Template Engine) MVC 应用(MVC Applications) 路由(Routing) 调度控制器(Dispatching Controllers) 微应用(Micro Applications) 使用命名空间(Working with Namespaces) 事件管理器(Events Manager) 请求环境 (Request Environment) 返回响应(Returning Responses) Cookie 管理(Cookies Management) 生成 URL 和 路径(Generating URLs and Paths) 闪存消息(Flashing Messages) 使用 Session 存储数据(Storing data in Session) 过滤与清理(Filtering and Sanitizing) 上下文编码(Contextual Escaping) 验证(Validation) 表单(Forms) 读取配置(Reading Configurations) 分页(Pagination) 使用缓存提高性能(Improving Performance with Cache) 安全(Security) 加密/解密( Encryption/Decryption ) 访问控制列表 ACL(Access Control Lists ACL) 多语言支持(Multi-lingual Support) 通用类加载器 ( Universal Class Loader ) 日志记录(Logging) 注释解析器(Annotations Parser) 命令行应用(Command Line Applications) 队列(Queueing) 数据库抽象层(Database Abstraction Layer) 国际化(Internationalization) 数据库迁移(Database Migrations) 调试应用程序(Debugging Applications) Phalcon 开发工具(Phalcon Developer Tools) 提高性能:下一步该做什么?(Increasing Performance: What's next?) 单元测试(Unit testing) 授权(License)
教程

发布于 2015-08-21 15:23:50 | 317 次阅读 | 评论: 0 | 来源: 网络整理

数据库迁移(Database Migrations)

Migrations are a convenient way for you to alter your database in a structured and organized manner.

Important: Migrations are available on Phalcon Developer Tools You need at least Phalcon Framework version 0.5.0 to use developer tools. Also, it is recommended to have PHP 5.4 or greater installed.

Often in development we need to update changes in production environments. Some of these changes could be database modifications like new fields, new tables, removing indexes, etc.

When a migration is generated a set of classes are created to describe how your database is structured at that moment. These classes can be used to synchronize the schema structure on remote databases setting your database ready to work with the new changes that your application implements. Migrations describe these transformations using plain PHP.

图解导出(Schema Dumping)

The Phalcon Developer Tools provides scripts to manage migrations (generation, running and rollback).

The available options for generating migrations are:

../_images/migrations-1.png

Running this script without any parameters will simply dump every object (tables and views) from your database in migration classes.

Each migration has a version identifier associated to it. The version number allows us to identify if the migration is newer or older than the current ‘version’ of our database. Versions also inform Phalcon of the running order when executing a migration.

../_images/migrations-2.png

When a migration is generated, instructions are displayed on the console to describe the different steps of the migration and the execution time of those statements. At the end, a migration version is generated.

By default Phalcon Developer Tools use the app/migrations directory to dump the migration files. You can change the location by setting one of the parameters on the generation script. Each table in the database has its respective class generated in a separated file under a directory referring its version:

../_images/migrations-3.png

迁移类剖析(Migration Class Anatomy)

Each file contains a unique class that extends the PhalconMvcModelMigration These classes normally have two methods: up() and down(). Up() performs the migration, while down() rolls it back.

Up() also contains the magic method morphTable(). The magic comes when it recognizes the changes needed to synchronize the actual table in the database to the description given.

<?php

use PhalconDbColumn as Column;
use PhalconDbIndex as Index;
use PhalconDbReference as Reference;

class ProductsMigration_100 extends PhalconMvcModelMigration
{
    public function up()
    {
        $this->morphTable(
            "products",
            array(
                "columns" => array(
                    new Column(
                        "id",
                        array(
                            "type"          => Column::TYPE_INTEGER,
                            "size"          => 10,
                            "unsigned"      => true,
                            "notNull"       => true,
                            "autoIncrement" => true,
                            "first"         => true
                        )
                    ),
                    new Column(
                        "product_types_id",
                        array(
                            "type"     => Column::TYPE_INTEGER,
                            "size"     => 10,
                            "unsigned" => true,
                            "notNull"  => true,
                            "after"    => "id"
                        )
                    ),
                    new Column(
                        "name",
                        array(
                            "type"    => Column::TYPE_VARCHAR,
                            "size"    => 70,
                            "notNull" => true,
                            "after"   => "product_types_id"
                        )
                    ),
                    new Column(
                        "price",
                        array(
                            "type"    => Column::TYPE_DECIMAL,
                            "size"    => 16,
                            "scale"   => 2,
                            "notNull" => true,
                            "after"   => "name"
                        )
                    ),
                ),
                "indexes" => array(
                    new Index(
                        "PRIMARY",
                        array("id")
                    ),
                    new Index(
                        "product_types_id",
                        array("product_types_id")
                    )
                ),
                "references" => array(
                    new Reference(
                        "products_ibfk_1",
                        array(
                            "referencedSchema"  => "invo",
                            "referencedTable"   => "product_types",
                            "columns"           => array("product_types_id"),
                            "referencedColumns" => array("id")
                        )
                    )
                ),
                "options" => array(
                    "TABLE_TYPE"      => "BASE TABLE",
                    "ENGINE"          => "InnoDB",
                    "TABLE_COLLATION" => "utf8_general_ci"
                )
            )
        );
    }
}

The class is called “ProductsMigration_100”. Suffix 100 refers to the version 1.0.0. morphTable() receives an associative array with 4 possible sections:

Index Description Optional
“columns” An array with a set of table columns No
“indexes” An array with a set of table indexes. Yes
“references” An array with a set of table references (foreign keys). Yes
“options” An array with a set of table creation options. These options are often related to the database system in which the migration was generated. Yes

定义列(Defining Columns)

PhalconDbColumn is used to define table columns. It encapsulates a wide variety of column related features. Its constructor receives as first parameter the column name and an array describing the column. The following options are available when describing columns:

Option Description Optional
“type” Column type. Must be a Phalcon_Db_Column constant (see below) No
“size” Some type of columns like VARCHAR or INTEGER may have a specific size Yes
“scale” DECIMAL or NUMBER columns may be have a scale to specify how much decimals it must store Yes
“unsigned” INTEGER columns may be signed or unsigned. This option does not apply to other types of columns Yes
“notNull” Column can store null values? Yes
“autoIncrement” With this attribute column will filled automatically with an auto-increment integer. Only one column in the table can have this attribute. Yes
“first” Column must be placed at first position in the column order Yes
“after” Column must be placed after indicated column Yes

Database migrations support the following database column types:

  • PhalconDbColumn::TYPE_INTEGER
  • PhalconDbColumn::TYPE_DATE
  • PhalconDbColumn::TYPE_VARCHAR
  • PhalconDbColumn::TYPE_DECIMAL
  • PhalconDbColumn::TYPE_DATETIME
  • PhalconDbColumn::TYPE_CHAR
  • PhalconDbColumn::TYPE_TEXT

定义索引(Defining Indexes)

PhalconDbIndex defines table indexes. An index only requires that you define a name for it and a list of its columns. Note that if any index has the name PRIMARY, Phalcon will create a primary key index in that table.

定义关系(Defining References)

PhalconDbReference defines table references (also called foreign keys). The following options can be used to define a reference:

Index Description Optional
“referencedTable” It’s auto-descriptive. It refers to the name of the referenced table. No
“columns” An array with the name of the columns at the table that have the reference No
“referencedColumns” An array with the name of the columns at the referenced table No
“referencedTable” The referenced table maybe is on another schema or database. This option allows you to define that. Yes

创建迁移类(Writing Migrations)

Migrations aren’t only designed to “morph” table. A migration is just a regular PHP class so you’re not limited to these functions. For example after adding a column you could write code to set the value of that column for existing records. For more details and examples of individual methods, check the database component.

<?php

class ProductsMigration_100 extends PhalconMvcModelMigration
{
    public function up()
    {
        // ...
        self::$_connection->insert(
            "products",
            array("Malabar spinach", 14.50),
            array("name", "price")
        );
    }
}

执行迁移(Running Migrations)

Once the generated migrations are uploaded on the target server, you can easily run them as shown in the following example:

../_images/migrations-4.png
../_images/migrations-5.png

Depending on how outdated is the database with respect to migrations, Phalcon may run multiple migration versions in the same migration process. If you specify a target version, Phalcon will run the required migrations until it reaches the specified version.

最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务