Skip to content

Commit

Permalink
Removed timestamps from languages table
Browse files Browse the repository at this point in the history
  • Loading branch information
Liongold committed May 23, 2016
1 parent 97f48e6 commit b32c775
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public function up()
Schema::create('languages', function (Blueprint $table) {
$table->char('id', 36)->default(null)->primary();
$table->char('language_code', 7);
$table->timestamps();
$table->softDeletes();
$table->engine = 'InnoDB';
});
Expand Down

0 comments on commit b32c775

Please sign in to comment.