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/20170613021450_create_messagereplies.rb

14 lines
273 B
Ruby

class CreateMessagereplies < ActiveRecord::Migration
def change
create_table :messagereplies do |t|
t.text :text
t.references :user_author
t.references :user_editor
t.references :message
t.timestamps null: true
end
end
end