···1-- Create table 'user_repos' to manage repositories for each user
2-CREATE TABLE user_repos (
3 id INTEGER PRIMARY KEY AUTOINCREMENT,
4 user_id INTEGER NOT NULL,
5 repo_name TEXT NOT NULL,
···1-- Create table 'user_repos' to manage repositories for each user
2+CREATE TABLE IF NOT EXISTS user_repos (
3 id INTEGER PRIMARY KEY AUTOINCREMENT,
4 user_id INTEGER NOT NULL,
5 repo_name TEXT NOT NULL,