We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently there is a block of code that is reserved for database migrations in setup:with:
NSLog(@"Table: %@ Version: %@\n", className, version); if(savedValue != nil && !DEBUG) { // DATABASE TABLE IS CACHED if([version isEqualToString:savedValue]) { NSLog(@"Note: To update %@ table schema or populate your database you may need to update your app version from: %@", className, version); continue; // DATABASE TABLE ALREADY AT CORRECT VERSION } else { // DATABASE TABLE NEEDS SEED //[queryString appendString:[NSString stringWithFormat:@"DROP TABLE IF EXISTS '%@'; ", className]]; } }
This needs to completed in the next major release (3.X.X)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently there is a block of code that is reserved for database migrations in setup:with:
This needs to completed in the next major release (3.X.X)
The text was updated successfully, but these errors were encountered: