Project

General

Profile

Download (580 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateNotices < ActiveRecord::Migration
def self.up
# These are notice messages
create_table :notices do |t|
t.string :content, :null => false, :limit => 1024
t.boolean :global, :null => false, :default => true
t.string :level, :null => false
t.timestamps
end
# Global messages have to be acknowledged by every user individually
create_table :user_notices, :id => false do |t|
t.references :user
t.references :notice
end
end

def self.down
drop_table :user_notices
drop_table :notices
end
end
(41-41/83)