mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-01-20 08:28:52 +00:00
16 lines
331 B
JavaScript
16 lines
331 B
JavaScript
import { appSchema, tableSchema } from '@nozbe/watermelondb'
|
|
|
|
export default appSchema({
|
|
version: 1,
|
|
tables: [
|
|
tableSchema({
|
|
name: 'lp_events',
|
|
columns: [
|
|
{ name: 'address', type: 'string' },
|
|
{ name: 'event', type: 'string' },
|
|
{ name: 'event_id', type: 'string' },
|
|
]
|
|
})
|
|
]
|
|
})
|