Hurr. Already had a settings table.

This commit is contained in:
snipe
2013-11-22 01:07:41 -05:00
parent 7b9eebe51c
commit 08db7fbb38
2 changed files with 1 additions and 38 deletions
@@ -29,7 +29,7 @@ class CreateSettingsTable extends Migration {
*/
public function down()
{
//
Schema::drop('settings');
}
}
@@ -1,37 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
class CreateSettingsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('settings', function($table)
{
$table->increments('id');
$table->string('name',100);
$table->string('option_name');
$table->string('option_value');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
public function down()
{
Schema::drop('settings');
}
}
}