Skip to content

Instantly share code, notes, and snippets.

View omartech's full-sized avatar

Omar Ali Ibrahim omartech

View GitHub Profile
<?php
class InitialDbMigrationCommand extends CConsoleCommand
{
public function run($args) {
$schema = $args[0];
$tables = Yii::app()->db->schema->getTables($schema);
$addForeignKeys = '';
$dropForeignKeys = '';