You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20160105014033_create_org_m...

20 lines
372 B

class CreateOrgMessages < ActiveRecord::Migration
def up
create_table :org_messages do |t|
t.integer :user_id
t.integer :sender_id
t.integer :organization_id
t.string :message_type
t.integer :message_id
t.integer :viewed
t.string :content
t.timestamps
end
end
def down
drop_table :org_messages
end
end