diff --git a/database/migrations/2014_01_07_073615_create_tagged_table.php b/database/migrations/2014_01_07_073615_create_tagged_table.php deleted file mode 100644 index 170736673..000000000 --- a/database/migrations/2014_01_07_073615_create_tagged_table.php +++ /dev/null @@ -1,27 +0,0 @@ -increments('id'); - if (config('tagging.primary_keys_type') == 'string') { - $table->string('taggable_id', 36)->index(); - } else { - $table->integer('taggable_id')->unsigned()->index(); - } - $table->string('taggable_type', 125)->index(); - $table->string('tag_name', 125); - $table->string('tag_slug', 125)->index(); - }); - } - - public function down() - { - Schema::drop('tagging_tagged'); - } -} diff --git a/database/migrations/2014_01_07_073615_create_tags_table.php b/database/migrations/2014_01_07_073615_create_tags_table.php deleted file mode 100644 index 298dde166..000000000 --- a/database/migrations/2014_01_07_073615_create_tags_table.php +++ /dev/null @@ -1,23 +0,0 @@ -increments('id'); - $table->string('slug', 125)->index(); - $table->string('name', 125); - $table->boolean('suggest')->default(false); - $table->integer('count')->unsigned()->default(0); // count of how many times this tag was used - }); - } - - public function down() - { - Schema::drop('tagging_tags'); - } -} diff --git a/database/migrations/2016_06_29_073615_create_tag_groups_table.php b/database/migrations/2016_06_29_073615_create_tag_groups_table.php deleted file mode 100644 index 577e865cf..000000000 --- a/database/migrations/2016_06_29_073615_create_tag_groups_table.php +++ /dev/null @@ -1,21 +0,0 @@ -increments('id'); - $table->string('slug', 125)->index(); - $table->string('name', 125); - }); - } - - public function down() - { - Schema::drop('tagging_tag_groups'); - } -} diff --git a/database/migrations/2016_06_29_073615_update_tags_table.php b/database/migrations/2016_06_29_073615_update_tags_table.php deleted file mode 100644 index b3c2bf065..000000000 --- a/database/migrations/2016_06_29_073615_update_tags_table.php +++ /dev/null @@ -1,22 +0,0 @@ -integer('tag_group_id')->unsigned()->nullable()->after('id'); - $table->foreign('tag_group_id')->references('id')->on('tagging_tag_groups'); - }); - } - - public function down() - { - Schema::table('tagging_tags', function ($table) { - $table->dropForeign('tagging_tags_tag_group_id_foreign'); - $table->dropColumn('tag_group_id'); - }); - } -}