1234567891011121314151617181920212223242526272829303132333435 |
- <?php
-
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
-
- class CreateScalesTable extends Migration {
-
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('scales', function(Blueprint $table)
- {
- $table->increments('id');
- $table->integer('position');
- $table->string('title');
- $table->string('description');
- $table->timestamps();
- });
- }
-
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::drop('scales');
- }
-
- }
|