Project

General

Profile

Download (347 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateNotificationBlueprints < ActiveRecord::Migration
def change
create_table :notification_blueprints do |t|
t.string :group, index: true
t.string :level
t.string :message
t.text :name
t.integer :expires_in
t.timestamps null: false
t.references :subject, polymorphic: true
end
end
end
(335-335/346)