createTable( 'alias', [ 'id'=> $this->primaryKey(), 'value'=> $this->string()->notNull(), ] ); } public function safeDown() { $this->dropTable('alias'); } }