28 lines
697 B
PHP
28 lines
697 B
PHP
|
|
<?php namespace RainLab\Translate\Updates;
|
||
|
|
|
||
|
|
use Schema;
|
||
|
|
use October\Rain\Database\Updates\Migration;
|
||
|
|
|
||
|
|
class CreateAttributesTable extends Migration
|
||
|
|
{
|
||
|
|
|
||
|
|
public function up()
|
||
|
|
{
|
||
|
|
Schema::create('rainlab_translate_attributes', function($table)
|
||
|
|
{
|
||
|
|
$table->engine = 'InnoDB';
|
||
|
|
$table->increments('id');
|
||
|
|
$table->string('locale')->index();
|
||
|
|
$table->string('model_id')->index()->nullable();
|
||
|
|
$table->string('model_type')->index()->nullable();
|
||
|
|
$table->mediumText('attribute_data')->nullable();
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
public function down()
|
||
|
|
{
|
||
|
|
Schema::dropIfExists('rainlab_translate_attributes');
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|