Example #1
0
        //一番最初のマイグレーション
        public void FirstMigration()
        {
            //設定DB
            configDB.droptable();
            configDB.createtable();

            //覇者の紋章の時間
            chpTimeDB.droptable();
            chpTimeDB.createtable();

            //参加メンバーテーブル
            joinMemDB.droptable();
            joinMemDB.createtable();
        }
Example #2
0
 public void initDB()
 {
     chpConf.droptable();
     chpConf.createtable();
 }