Skip to content

Commit

Permalink
Removed inappropriate backticks.
Browse files Browse the repository at this point in the history
- Resolves VUFIND-1192.
  • Loading branch information
demiankatz committed Jul 6, 2016
1 parent 1e3d1de commit 0669b9b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
@@ -1,8 +1,8 @@
--
-- Table structure for table `record`
-- Table structure for table record
--

CREATE TABLE `record` (
CREATE TABLE record (
id serial NOT NULL,
record_id varchar(255),
source varchar(50),
Expand Down
16 changes: 8 additions & 8 deletions module/VuFind/sql/pgsql.sql
Expand Up @@ -175,7 +175,7 @@ UNIQUE (session_id)
CREATE INDEX last_used_idx on session(last_used);

--
-- Table structure for table `change_tracker`
-- Table structure for table change_tracker
--

DROP TABLE IF EXISTS "change_tracker";
Expand All @@ -192,7 +192,7 @@ PRIMARY KEY (core, id)
CREATE INDEX change_tracker_deleted_idx on change_tracker(deleted);

--
-- Table structure for table `oai_resumption`
-- Table structure for table oai_resumption
--

DROP TABLE IF EXISTS "oai_resumption";
Expand All @@ -211,7 +211,7 @@ PRIMARY KEY (id)
--

--
-- Table structure for table `statistics`
-- Table structure for table statistics
--

DROP TABLE IF EXISTS "user_stats_fields";
Expand All @@ -226,7 +226,7 @@ PRIMARY KEY (id, field)
-- --------------------------------------------------------

--
-- Table structure for table `user_stats`
-- Table structure for table user_stats
--

DROP TABLE IF EXISTS "user_stats";
Expand All @@ -246,12 +246,12 @@ PRIMARY KEY (id)
-- --------------------------------------------------------

--
-- Table structure for table `record`
-- Table structure for table record
--

DROP TABLE IF EXISTS "record";

CREATE TABLE `record` (
CREATE TABLE record (
id serial NOT NULL,
record_id varchar(255),
source varchar(50),
Expand All @@ -265,12 +265,12 @@ CREATE TABLE `record` (
-- --------------------------------------------------------

--
-- Table structure for table `user_card`
-- Table structure for table user_card
--

DROP TABLE IF EXISTS "user_card";

CREATE TABLE `user_card` (
CREATE TABLE user_card (
id SERIAL,
user_id int NOT NULL,
card_name varchar(255) NOT NULL DEFAULT '',
Expand Down

0 comments on commit 0669b9b

Please sign in to comment.