create new Table on new version of application
See original GitHub issuewhen i try to have some new table on application i increase app version and i expectation to create new table, but i get error such as:
no such table: UserChannelInformation (code 1): , while compiling: INSERT INTO UserChannelInformation
(channelId
) VALUES (?)
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Creating new Table on updating existing app - Stack Overflow
Currently my app version for eg 1.1 it has only one table. which i create inside onCreate() method of my data helper class....
Read more >Create a custom table (contains video) - Power Apps
Section Column Description
Required columns Display name (Primary Name Column)
Required columns Enable attachments
Collaboration Support mail merge Allows people to use this table w...
Read more >Creating a new application on existing tables - YouTube
Creating a new application on existing tables · Key moments. View all · Key moments · Description · Key moments. View all ·...
Read more >Create a table - ServiceNow Docs
Create a table · Navigate to All > System Definition > Tables. · Click New and complete the form. · In the Columns...
Read more >Step 2: Create and set up a Table app in Awesome Table
Click Open to open your selected spreadsheet in a new tab · Click Select to choose a different spreadsheet as your data source...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I can confirm that if you add a new table and don’t increase the database version, then you’ll see
When you increase the DB version, it’ll work without needing to specifically add migration code (CREATE TABLE)
Mahdi, below is how I’ve done it. I assume a CREATE TABLE sqlite command is not needed - I haven’ tried adding a completely new table yet.