socialforge/db/migrate/20160105014033_create_org_m...

20 lines
372 B
Ruby

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