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
@@ -0,0 +1,17 @@
class CreateForumthreads < ActiveRecord::Migration
def change
create_table :forumthreads do |t|
t.string :title
t.text :content
t.boolean :sticky, :default => false
t.boolean :locked, :default => false
t.references :user_author
t.references :user_editor
t.references :forum
t.timestamps null: true
end
end
end