예제 #1
0
 public function requireDefaultRecords()
 {
     if (!Country_Shipping::get()->filter('Code', 'NZ')->count()) {
         $country = new Country_Shipping(['Code' => 'NZ', 'Title' => 'New Zealand']);
         $country->write();
         DB::alteration_message("Added 'New Zealand' to shipping countries", "changed");
     }
 }