Created
June 27, 2017 10:01
-
-
Save harmeetsingh0013/68fa7a05742e8012c0fa80461a8d5e2e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.knoldus.github.repo | |
// AUTO-GENERATED Slick data model | |
/** Stand-alone Slick data model for immediate use */ | |
object Tables extends { | |
val profile = slick.jdbc.PostgresProfile | |
} with Tables | |
/** Slick data model trait for extension, choice of backend or usage in the cake pattern. (Make sure to initialize this late.) */ | |
trait Tables { | |
val profile: slick.jdbc.JdbcProfile | |
import profile.api._ | |
import slick.model.ForeignKeyAction | |
// NOTE: GetResult mappers for plain SQL are only generated for tables where Slick knows how to map the types of all columns. | |
import slick.jdbc.{GetResult => GR} | |
/** DDL for all tables. Call .create to execute. */ | |
lazy val schema: profile.SchemaDescription = RepoInfo.schema ++ SearchKeys.schema | |
@deprecated("Use .schema instead of .ddl", "3.0") | |
def ddl = schema | |
/** Entity class storing rows of table RepoInfo | |
* @param id Database column id SqlType(int4), PrimaryKey | |
* @param key Database column key SqlType(uuid) | |
* @param name Database column name SqlType(varchar), Length(150,true), Default(None) | |
* @param fullName Database column full_name SqlType(varchar), Length(150,true), Default(None) | |
* @param owner Database column owner SqlType(varchar), Length(150,true), Default(None) | |
* @param url Database column url SqlType(varchar), Length(150,true), Default(None) | |
* @param languagesUrl Database column languages_url SqlType(varchar), Length(150,true), Default(None) | |
* @param sshUrl Database column ssh_url SqlType(varchar), Length(150,true), Default(None) | |
* @param cloneUrl Database column clone_url SqlType(varchar), Length(150,true), Default(None) | |
* @param homepage Database column homepage SqlType(varchar), Length(150,true), Default(None) | |
* @param watchersCount Database column watchers_count SqlType(int8), Default(None) | |
* @param watchers Database column watchers SqlType(int8), Default(None) | |
* @param forks Database column forks SqlType(int8), Default(None) */ | |
final case class RepoInfoRow(id: Int, key: java.util.UUID, name: Option[String] = None, fullName: Option[String] = None, owner: Option[String] = None, url: Option[String] = None, languagesUrl: Option[String] = None, sshUrl: Option[String] = None, cloneUrl: Option[String] = None, homepage: Option[String] = None, watchersCount: Option[Long] = None, watchers: Option[Long] = None, forks: Option[Long] = None) | |
/** GetResult implicit for fetching RepoInfoRow objects using plain SQL queries */ | |
implicit def GetResultRepoInfoRow(implicit e0: GR[Int], e1: GR[java.util.UUID], e2: GR[Option[String]], e3: GR[Option[Long]]): GR[RepoInfoRow] = GR{ | |
prs => import prs._ | |
RepoInfoRow.tupled((<<[Int], <<[java.util.UUID], <<?[String], <<?[String], <<?[String], <<?[String], <<?[String], <<?[String], <<?[String], <<?[String], <<?[Long], <<?[Long], <<?[Long])) | |
} | |
/** Table description of table repo_info. Objects of this class serve as prototypes for rows in queries. */ | |
class RepoInfo(_tableTag: Tag) extends profile.api.Table[RepoInfoRow](_tableTag, "repo_info") { | |
def * = (id, key, name, fullName, owner, url, languagesUrl, sshUrl, cloneUrl, homepage, watchersCount, watchers, forks) <> (RepoInfoRow.tupled, RepoInfoRow.unapply) | |
/** Maps whole row to an option. Useful for outer joins. */ | |
def ? = (Rep.Some(id), Rep.Some(key), name, fullName, owner, url, languagesUrl, sshUrl, cloneUrl, homepage, watchersCount, watchers, forks).shaped.<>({r=>import r._; _1.map(_=> RepoInfoRow.tupled((_1.get, _2.get, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13)))}, (_:Any) => throw new Exception("Inserting into ? projection not supported.")) | |
/** Database column id SqlType(int4), PrimaryKey */ | |
val id: Rep[Int] = column[Int]("id", O.PrimaryKey) | |
/** Database column key SqlType(uuid) */ | |
val key: Rep[java.util.UUID] = column[java.util.UUID]("key") | |
/** Database column name SqlType(varchar), Length(150,true), Default(None) */ | |
val name: Rep[Option[String]] = column[Option[String]]("name", O.Length(150,varying=true), O.Default(None)) | |
/** Database column full_name SqlType(varchar), Length(150,true), Default(None) */ | |
val fullName: Rep[Option[String]] = column[Option[String]]("full_name", O.Length(150,varying=true), O.Default(None)) | |
/** Database column owner SqlType(varchar), Length(150,true), Default(None) */ | |
val owner: Rep[Option[String]] = column[Option[String]]("owner", O.Length(150,varying=true), O.Default(None)) | |
/** Database column url SqlType(varchar), Length(150,true), Default(None) */ | |
val url: Rep[Option[String]] = column[Option[String]]("url", O.Length(150,varying=true), O.Default(None)) | |
/** Database column languages_url SqlType(varchar), Length(150,true), Default(None) */ | |
val languagesUrl: Rep[Option[String]] = column[Option[String]]("languages_url", O.Length(150,varying=true), O.Default(None)) | |
/** Database column ssh_url SqlType(varchar), Length(150,true), Default(None) */ | |
val sshUrl: Rep[Option[String]] = column[Option[String]]("ssh_url", O.Length(150,varying=true), O.Default(None)) | |
/** Database column clone_url SqlType(varchar), Length(150,true), Default(None) */ | |
val cloneUrl: Rep[Option[String]] = column[Option[String]]("clone_url", O.Length(150,varying=true), O.Default(None)) | |
/** Database column homepage SqlType(varchar), Length(150,true), Default(None) */ | |
val homepage: Rep[Option[String]] = column[Option[String]]("homepage", O.Length(150,varying=true), O.Default(None)) | |
/** Database column watchers_count SqlType(int8), Default(None) */ | |
val watchersCount: Rep[Option[Long]] = column[Option[Long]]("watchers_count", O.Default(None)) | |
/** Database column watchers SqlType(int8), Default(None) */ | |
val watchers: Rep[Option[Long]] = column[Option[Long]]("watchers", O.Default(None)) | |
/** Database column forks SqlType(int8), Default(None) */ | |
val forks: Rep[Option[Long]] = column[Option[Long]]("forks", O.Default(None)) | |
/** Foreign key referencing SearchKeys (database name valid_key) */ | |
lazy val searchKeysFk = foreignKey("valid_key", key, SearchKeys)(r => r.id, onUpdate=ForeignKeyAction.NoAction, onDelete=ForeignKeyAction.NoAction) | |
} | |
/** Collection-like TableQuery object for table RepoInfo */ | |
lazy val RepoInfo = new TableQuery(tag => new RepoInfo(tag)) | |
/** Entity class storing rows of table SearchKeys | |
* @param id Database column id SqlType(uuid), PrimaryKey | |
* @param key Database column key SqlType(varchar), Length(50,true), Default(None) */ | |
final case class SearchKeysRow(id: java.util.UUID, key: Option[String] = None) | |
/** GetResult implicit for fetching SearchKeysRow objects using plain SQL queries */ | |
implicit def GetResultSearchKeysRow(implicit e0: GR[java.util.UUID], e1: GR[Option[String]]): GR[SearchKeysRow] = GR{ | |
prs => import prs._ | |
SearchKeysRow.tupled((<<[java.util.UUID], <<?[String])) | |
} | |
/** Table description of table search_keys. Objects of this class serve as prototypes for rows in queries. */ | |
class SearchKeys(_tableTag: Tag) extends profile.api.Table[SearchKeysRow](_tableTag, "search_keys") { | |
def * = (id, key) <> (SearchKeysRow.tupled, SearchKeysRow.unapply) | |
/** Maps whole row to an option. Useful for outer joins. */ | |
def ? = (Rep.Some(id), key).shaped.<>({r=>import r._; _1.map(_=> SearchKeysRow.tupled((_1.get, _2)))}, (_:Any) => throw new Exception("Inserting into ? projection not supported.")) | |
/** Database column id SqlType(uuid), PrimaryKey */ | |
val id: Rep[java.util.UUID] = column[java.util.UUID]("id", O.PrimaryKey) | |
/** Database column key SqlType(varchar), Length(50,true), Default(None) */ | |
val key: Rep[Option[String]] = column[Option[String]]("key", O.Length(50,varying=true), O.Default(None)) | |
} | |
/** Collection-like TableQuery object for table SearchKeys */ | |
lazy val SearchKeys = new TableQuery(tag => new SearchKeys(tag)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment