I was trying to add a new table to my database that I created before but when I'm trying to add data it says that table couldn't be found.
I tried to debug and I think the problem is on the method below , it doesn't execute the second table which is my new table the first table is already exist
`public void onCreate(SQLiteDatabase db) {
db.execSQL(TABLE_CREATE);
db.execSQL(PASSWORD_TABLE_CREATE);
}`
here are my tables create statements
private static final String PASSWORD_TABLE_CREATE = "create table password (p_id integer primary key autoincrement not null, " + "p_text text not null, p_description text, p_category text not null);";
private static final String TABLE_CREATE = "create table accounts (id integer primary key autoincrement not null , " + "name text not null , email text not null , password text not null);";