svmk/yii-migration-postgresql-sectioning 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

svmk/yii-migration-postgresql-sectioning

最新稳定版本:0.0.8

Composer 安装命令:

composer require svmk/yii-migration-postgresql-sectioning

包简介

Migration for creating partitioing using Yii1/Yii2 framework.

README 文档

README

EXAMPLE

DateTime partitiong by week of year on Yii1:

<?php
use svmk\yiiMigrationSectioningPostgres\PostgresqlMigrationHelper;
use svmk\yiiMigrationSectioningPostgres\DateTimeWeekOfYearGrouping;
class m151019_123058_create_table_page_stat extends CDbMigration
{

	protected function getHelper() {
		$helper = new PostgresqlMigrationHelper(
			$this,
			'page_stat',
			array(
				'id' => 'bigserial NOT NULL PRIMARY KEY',
				'data_id' => 'BIGINT',
				'event_date' => 'TIMESTAMP',
				'region_id'  => 'INT',
				'city_id'    => 'INT',
				'views'		 => 'INT',
			)
		);
		return $helper->grouping(
			new DateTimeWeekOfYearGrouping('id','event_date')
		);
	}
	public function getDbConnection()
	{
		return Yii::app()->statisticsDb;
	}
	public function safeUp()
	{
		$this->getHelper()->up(
			function($migration,$tableName,$columns,$config,$isMainTable){
				$migration->createTable(
					$tableName,
					$columns,
					$config
				);
				if (!$isMainTable) {
					$migration->createIndex($tableName.'_data_id',$tableName,'data_id');
					$migration->createIndex($tableName.'_event_date',$tableName,'event_date');
				}
			}
		);
	}

	public function safeDown()
	{
		$this->getHelper()->down(function($migration,$tableName,$isMainTable){			
			$migration->dropTable($tableName);
		});
	}
}

FEATURES

For sectioning use these classes:

  • svmk\yiiMigrationSectioningPostgres\DateTimeDayOfYearGrouping - group by timestamp field day of year
  • svmk\yiiMigrationSectioningPostgres\DateTimeWeekOfYearGrouping - group by timestamp field week of year
  • svmk\yiiMigrationSectioningPostgres\IndexReminderOfDivisonGrouping - group by integer field - division with remainder

REQUIREMENTS

PHP 5.3

INSTALLATION

Require this package in your composer.json and run composer update:

	"svmk/yii-migration-postgresql-sectioning": "*"

统计信息

  • 总下载量: 2.58k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-10-19