You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PlexShare/fuel/app/migrations/001_create_configurations.php

20 lines
468 B

<?php
namespace Fuel\Migrations;
class Create_configurations
{
public function up()
{
\DBUtil::create_table('configurations', array(
'id' => array('type' => 'varchar', 'null' => false, 'constraint' => 36),
'name' => array('type' => 'varchar', 'null' => false, 'constraint' => 255),
'data' => array('type' => 'varchar', 'null' => false, 'constraint' => 255),
), array('id'));
}
public function down()
{
\DBUtil::drop_table('configurations');
}
}