We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee59416 commit a827be5Copy full SHA for a827be5
singlefile/schema.sql
@@ -76,19 +76,18 @@ $$;
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';
84
-COMMENT ON COLUMN users.email IS 'User email address';
85
+COMMENT ON COLUMN users.email IS 'User email address1';
86
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