/
bear
/
opencorpora
Обзор
Документация
Войти
/
bear
/
opencorpora
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
migrations/20140101000000_initial_db.php
14 строк
284 B
Alex Chuchunkov
fix for #131
25 дек 2014, 23:11
25 дек 2014, 23:11
aec4ef4
Код
Авторство
О чём код?
<?php use Phinx\Migration\AbstractMigration; class InitialDb extends AbstractMigration { public function up() { $this->execute(file_get_contents(__DIR__.'/initial_schema.sql')); } public function down() { throw new Exception("Not implemented"); } }