All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sql.migration.V20150521141854__AddInterest.sql Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
CREATE TABLE ilectro_interests (
  id int NOT NULL,
  name varchar(255) NOT NULL,
  parent_id int NOT NULL,
  full_path varchar(255) NOT NULL,
  level int NOT NULL,
  PRIMARY KEY (id)
);

CREATE INDEX ON ilectro_interests(level);
CREATE INDEX ON ilectro_interests(parent_id);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy