# -*coding:utf-8 -*- class SetNotification < ActiveRecord::Migration def change notifications = ContestNotification.all if notifications.nil? || notifications.count == 0 notification = ContestNotification.new notification.title = "2014年Android程序设计大赛获奖名单" notification.content = "
一等奖: 消灭那怪兽
二等奖: 兄弟向前冲
二等奖: 鸟鸟文件管理器(银河之光版)
三等奖: 疯狂猜图
三等奖: 愉快的定向越野
三等奖: 体能训练助手
三等奖: 迷你日记本
三等奖: 永齐飞机大战
" notification.save end end end