fix old migration file names

This commit is contained in:
jomo
2016-02-07 14:27:57 +01:00
parent ce304ece43
commit 854dc4d834
11 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
class CreateComments < ActiveRecord::Migration
def change
create_table :comments do |t|
t.text :content
t.references :user_author
t.references :user_editor
t.references :blogpost
t.timestamps null: true
end
end
end