Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

V3 1 #39

Open
wants to merge 2 commits into
base: V3_1
Choose a base branch
from
Open

V3 1 #39

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chouette_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,7 @@ CREATE UNIQUE INDEX lines_objectid_key ON lines USING btree (objectid);
-- Name: lines_registration_number_key; Type: INDEX; Schema: :SCH; Owner: chouette; Tablespace:
--

CREATE UNIQUE INDEX lines_registration_number_key ON lines USING btree (registration_number);
CREATE INDEX lines_registration_number_key ON lines USING btree (registration_number);


--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public void setPublishedName(String value) {
* @return The actual value
*/
@Getter
@Column(name = "registration_number", unique = true)
@Column(name = "registration_number")
private String registrationNumber;

/**
Expand Down