Sha256: b0213e569d59dbd6e3ad870c6dc4a2ef68bc5d979b3ead60b887aa27ac2d99a3
Contents?: true
Size: 271 Bytes
Versions: 14
Compression:
Stored size: 271 Bytes
Contents
class CreateNotifications < ActiveRecord::Migration def self.up create_table :notifications do |t| t.belongs_to :task t.belongs_to :notifier t.time :sent_at t.timestamps end end def self.down drop_table :notifications end end
Version data entries
14 entries across 14 versions & 1 rubygems