Created
April 22, 2013 12:35
-
-
Save robmorgan/5434587 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Phinx\Migration\AbstractMigration; | |
class CreatePostsTable extends AbstractMigration | |
{ | |
/** | |
* Migrate Up. | |
*/ | |
public function up() | |
{ | |
$this->execute('CREATE TABLE `post` ( | |
`title` VARCHAR(255), | |
`time_created` DATETIME, | |
`content` MEDIUMTEXT | |
);'); | |
} | |
/** | |
* Migrate Down. | |
*/ | |
public function down() | |
{ | |
$this->execute('DROP TABLE `post`'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment