This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/db/migrate/10_create_threadreplies.rb
2016-01-17 22:27:38 +01:00

14 lines
278 B
Ruby

class CreateThreadreplies < ActiveRecord::Migration
def change
create_table :threadreplies do |t|
t.text :content
t.references :user_author
t.references :user_editor
t.references :forumthread
t.timestamps null: true
end
end
end