Dotfiles/dotfiles/vim/UltiSnips/php_yii.snippets
2016-11-30 09:35:05 +00:00

14 lines
241 B
Text

snippet yiifk "migration foreign key" b
/*
* FOREIGN KEY : ${1:Table}.${2:Field}
* REFERENCES : ${3:Reference Table}.${4:Reference Field}
*/
$this->addForeignKey(
'fk-$1-$2',
'$1',
'$2',
'$3',
'$4',
'CASCADE'
);
endsnippet