We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ddeb37e + ee72b9f commit af2d759Copy full SHA for af2d759
singlefile/schema.sql
@@ -76,7 +76,8 @@ $$;
76
CREATE TABLE IF NOT EXISTS users (
77
id integer PRIMARY KEY,
78
email text NOT NULL CHECK (email LIKE '%@%'),
79
- name text NOT NULL
+ name text NOT NULL,
80
+ city text NOT NULL
81
);
82
83
COMMENT ON TABLE users IS 'User accounts';
@@ -87,8 +88,6 @@ COMMENT ON COLUMN users.email IS 'User email address';
87
88
-- Name: idx_users_email; Type: INDEX; Schema: -; Owner: -
89
--
90
-CREATE INDEX IF NOT EXISTS idx_users_email ON users (email);
91
-
92
93
-- Name: idx_users_name; Type: INDEX; Schema: -; Owner: -
94
0 commit comments