32 lines
709 B
JavaScript
32 lines
709 B
JavaScript
import { schemaMigrations, addColumns } from '@nozbe/watermelondb/Schema/migrations';
|
|
|
|
export default schemaMigrations({
|
|
migrations: [
|
|
{
|
|
toVersion: 3,
|
|
steps: [
|
|
addColumns({
|
|
table: 'users',
|
|
columns: [
|
|
{ name: 'statusText', type: 'string', isOptional: true }
|
|
]
|
|
})
|
|
]
|
|
},
|
|
{
|
|
toVersion: 4,
|
|
steps: [
|
|
addColumns({
|
|
table: 'servers',
|
|
columns: [
|
|
{ name: 'last_local_authenticated_session', type: 'number', isOptional: true },
|
|
{ name: 'auto_lock', type: 'boolean', isOptional: true },
|
|
{ name: 'auto_lock_time', type: 'number', isOptional: true },
|
|
{ name: 'biometry', type: 'boolean', isOptional: true }
|
|
]
|
|
})
|
|
]
|
|
}
|
|
]
|
|
});
|