質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.35%
Xcode

Xcodeはソフトウェア開発のための、Appleの統合開発環境です。Mac OSXに付随するかたちで配布されています。

Swift

Swiftは、アップルのiOSおよびOS Xのためのプログラミング言語で、Objective-CやObjective-C++と共存することが意図されています

Q&A

解決済

1回答

651閲覧

RealmSwiftにカラムを追加してマイグレーションしたい

sunglass

総合スコア303

Xcode

Xcodeはソフトウェア開発のための、Appleの統合開発環境です。Mac OSXに付随するかたちで配布されています。

Swift

Swiftは、アップルのiOSおよびOS Xのためのプログラミング言語で、Objective-CやObjective-C++と共存することが意図されています

0グッド

0クリップ

投稿2020/05/05 06:19

RealmSwiftにカラムを追加してマイグレーションしたいです。
公式ドキュメントを見様見真似でやるものうまくいかず・・・

どこのファイルに公式のコードを添付してマイグレーションするのか知りたいです。

・Realm公式ドキュメンタリー
https://realm.io/docs/swift/latest/#migrations

//旧モデル import Foundation import RealmSwift class Obj: Object{ @objc dynamic var id = 0 @objc dynamic var name: String? override static func primaryKey() -> String? { return "id" } }
import Foundation import RealmSwift class Obj: Object{ @objc dynamic var id = 0 @objc dynamic var name: String? @objc dynamic var profile: String? // プロフィールカラム追加 override static func primaryKey() -> String? { return "id" } }

AppDelegate

1import UIKit 2 3@UIApplicationMain 4class AppDelegate: UIResponder, UIApplicationDelegate { 5 6 7 func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 8 // Override point for customization after application launch. 9 10 let config = Realm.Configuration( 11 // Set the new schema version. This must be greater than the previously used 12 // version (if you've never set a schema version before, the version is 0). 13 schemaVersion: 1, 14 15 // Set the block which will be called automatically when opening a Realm with 16 // a schema version lower than the one set above 17 migrationBlock: { migration, oldSchemaVersion in 18 // We haven’t migrated anything yet, so oldSchemaVersion == 0 19 if (oldSchemaVersion < 1) { 20 // Nothing to do! 21 // Realm will automatically detect new properties and removed properties 22 // And will update the schema on disk automatically 23 } 24 }) 25 26 // Tell Realm to use this new configuration object for the default Realm 27 Realm.Configuration.defaultConfiguration = config 28 29 // Now that we've told Realm how to handle the schema change, opening the file 30 // will automatically perform the migration 31 let realm = try! Realm() 32 33 34 return true 35 36 } 37

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

ch3cooh

2020/05/05 07:24

追加されたprofileフィールドはString?型なので、`schemaVersion` の `1` を `2`にあげるだけでうまくマイグレーションされないでしょうか?
sunglass

2020/05/05 08:20

schemaVersionを2に変更したら出来ました! (import RealmSwiftも忘れてました・・・)
sunglass

2020/05/05 08:23

ありがとうございます!
guest

回答1

0

自己解決

頂いたアドバイスのお陰で解決しました。

  • schemaVersionを2に変更
  • import RealmSwift(書き忘れ)
import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. let config = Realm.Configuration( // Set the new schema version. This must be greater than the previously used // version (if you've never set a schema version before, the version is 0). schemaVersion: 1, // Set the block which will be called automatically when opening a Realm with // a schema version lower than the one set above migrationBlock: { migration, oldSchemaVersion in // We haven’t migrated anything yet, so oldSchemaVersion == 0 if (oldSchemaVersion < 1) { // Nothing to do! // Realm will automatically detect new properties and removed properties // And will update the schema on disk automatically } }) // Tell Realm to use this new configuration object for the default Realm Realm.Configuration.defaultConfiguration = config // Now that we've told Realm how to handle the schema change, opening the file // will automatically perform the migration let realm = try! Realm() return true }

投稿2020/05/05 08:24

sunglass

総合スコア303

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.35%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問