Skip to content

Commit f300f8c

Browse files
committed
Noticed that there was no actual migration for spam_reports but that it was defined directly in the schema.rb
1 parent 4827b2c commit f300f8c

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class CreateSpamReports < ActiveRecord::Migration
2+
def change
3+
create_table "spam_reports", force: true do |t|
4+
t.integer "spammable_id", null: false
5+
t.string "spammable_type", null: false
6+
t.timestamps
7+
end
8+
end
9+
end

db/schema.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended to check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(:version => 20140703223632) do
14+
ActiveRecord::Schema.define(:version => 20140709044301) do
1515

1616
create_table "alias_tags", :id => false, :force => true do |t|
1717
t.integer "tag_id"

0 commit comments

Comments
 (0)