Skip to content

Commit

Permalink
refactored connection stuff; optimized all imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Umed Khudoiberdiev committed Sep 18, 2016
1 parent 8f5ac0c commit 2a59f62
Show file tree
Hide file tree
Showing 104 changed files with 589 additions and 355 deletions.
4 changes: 1 addition & 3 deletions sample/sample10-mixed/entity/Category.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {ManyToOne, ManyToMany} from "../../../src/index";
import {PrimaryColumn, Column, Table, ManyToOne, ManyToMany} from "../../../src/index";
import {Post} from "./Post";
import {PostDetails} from "./PostDetails";

Expand Down
4 changes: 1 addition & 3 deletions sample/sample10-mixed/entity/Chapter.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToMany} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToMany} from "../../../src/index";
import {PostDetails} from "./PostDetails";

@Table("sample10_chapter")
Expand Down
4 changes: 1 addition & 3 deletions sample/sample10-mixed/entity/Cover.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToMany} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToMany} from "../../../src/index";
import {Post} from "./Post";

@Table("sample10_cover")
Expand Down
4 changes: 1 addition & 3 deletions sample/sample10-mixed/entity/Image.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {ManyToOne, OneToOne} from "../../../src/index";
import {PrimaryColumn, Column, Table, ManyToOne, OneToOne} from "../../../src/index";
import {Post} from "./Post";
import {ImageDetails} from "./ImageDetails";
import {JoinColumn} from "../../../src/decorator/relations/JoinColumn";
Expand Down
4 changes: 1 addition & 3 deletions sample/sample10-mixed/entity/ImageDetails.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToOne} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {Image} from "./Image";

@Table("sample10_image_details")
Expand Down
4 changes: 1 addition & 3 deletions sample/sample10-mixed/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToMany, ManyToOne, ManyToMany, OneToOne} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToMany, ManyToOne, ManyToMany, OneToOne} from "../../../src/index";
import {Image} from "./Image";
import {Cover} from "./Cover";
import {Category} from "./Category";
Expand Down
4 changes: 1 addition & 3 deletions sample/sample10-mixed/entity/PostDetails.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToOne, OneToMany, ManyToOne} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne, OneToMany, ManyToOne} from "../../../src/index";
import {Post} from "./Post";
import {Chapter} from "./Chapter";
import {Category} from "./Category";
Expand Down
3 changes: 1 addition & 2 deletions sample/sample11-all-types-entity/entity/EverythingEntity.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {CreateDateColumn} from "../../../src/decorator/columns/CreateDateColumn";
import {UpdateDateColumn} from "../../../src/decorator/columns/UpdateDateColumn";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample12-custom-naming-strategy/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample1_post")
export class Post {
Expand Down
5 changes: 1 addition & 4 deletions sample/sample13-everywhere-abstraction/entity/Blog.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {ManyToOne} from "../../../src/decorator/relations/ManyToOne";
import {PostAuthor} from "./PostAuthor";
import {Column, Table} from "../../../src/index";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";
import {PostCategory} from "./PostCategory";
import {JoinTable} from "../../../src/decorator/relations/JoinTable";
Expand Down
5 changes: 1 addition & 4 deletions sample/sample13-everywhere-abstraction/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import {Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {Column, Table} from "../../../src/index";
import {PostCategory} from "./PostCategory";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";
import {PostAuthor} from "./PostAuthor";
import {ManyToOne} from "../../../src/decorator/relations/ManyToOne";
import {JoinTable} from "../../../src/decorator/relations/JoinTable";
import {BaseObject} from "./BaseObject";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample13-everywhere-abstraction/entity/PostAuthor.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Post} from "./Post";
import {OneToMany} from "../../../src/decorator/relations/OneToMany";
import {PostUser} from "./PostUser";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Post} from "./Post";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample13-everywhere-abstraction/entity/PostUser.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample13_post_user")
export class PostUser {
Expand Down
5 changes: 1 addition & 4 deletions sample/sample14-errors-in-wrong-metdata/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToOne} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {PostAuthor} from "./PostAuthor";
import {JoinColumn} from "../../../src/decorator/relations/JoinColumn";
import {ManyToOne} from "../../../src/decorator/relations/ManyToOne";
import {OneToMany} from "../../../src/decorator/relations/OneToMany";
import {JoinTable} from "../../../src/decorator/relations/JoinTable";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";
Expand Down
4 changes: 1 addition & 3 deletions sample/sample14-errors-in-wrong-metdata/entity/PostAuthor.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {Post} from "./Post";
import {OneToOne} from "../../../src/index";
import {ManyToOne} from "../../../src/decorator/relations/ManyToOne";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample15-we-are-reactive/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample15_post")
export class Post {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample17-versioning/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {VersionColumn} from "../../../src/decorator/columns/VersionColumn";

@Table("sample17_post")
Expand Down
3 changes: 1 addition & 2 deletions sample/sample18-lazy-relations/entity/Author.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Post} from "./Post";
import {OneToMany} from "../../../src/decorator/relations/OneToMany";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample18-lazy-relations/entity/Category.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";
import {Post} from "./Post";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample18-lazy-relations/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Author} from "./Author";
import {ManyToOne} from "../../../src/decorator/relations/ManyToOne";
import {Category} from "./Category";
Expand Down
3 changes: 1 addition & 2 deletions sample/sample19-one-side-relations/entity/Author.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample19_author")
export class Author {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample19-one-side-relations/entity/Category.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample19_category")
export class Category {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample19-one-side-relations/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Author} from "./Author";
import {ManyToOne} from "../../../src/decorator/relations/ManyToOne";
import {Category} from "./Category";
Expand Down
3 changes: 1 addition & 2 deletions sample/sample19-one-side-relations/entity/PostMetadata.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample19_post_metadata")
export class PostMetadata {
Expand Down
4 changes: 1 addition & 3 deletions sample/sample2-one-to-one/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {PostDetails} from "./PostDetails";
import {OneToOne} from "../../../src/index";
import {PostCategory} from "./PostCategory";
import {PostAuthor} from "./PostAuthor";
import {PostInformation} from "./PostInformation";
Expand Down
4 changes: 1 addition & 3 deletions sample/sample2-one-to-one/entity/PostAuthor.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {Post} from "./Post";
import {OneToOne} from "../../../src/index";

@Table("sample2_post_author")
export class PostAuthor {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample2-one-to-one/entity/PostCategory.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample2_post_category")
export class PostCategory {
Expand Down
4 changes: 1 addition & 3 deletions sample/sample2-one-to-one/entity/PostDetails.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToOne} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {Post} from "./Post";

@Table("sample2_post_details")
Expand Down
4 changes: 1 addition & 3 deletions sample/sample2-one-to-one/entity/PostImage.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {Post} from "./Post";
import {OneToOne} from "../../../src/index";

@Table("sample2_post_image")
export class PostImage {
Expand Down
4 changes: 1 addition & 3 deletions sample/sample2-one-to-one/entity/PostInformation.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToOne} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {Post} from "./Post";

@Table("sample2_post_information")
Expand Down
4 changes: 1 addition & 3 deletions sample/sample2-one-to-one/entity/PostMetadata.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToOne} from "../../../src/index";
import {Post} from "./Post";
import {OneToOne} from "../../../src/index";

@Table("sample2_post_metadata")
export class PostMetadata {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample20-join-without-relation/entity/Author.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample20_author")
export class Author {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample20-join-without-relation/entity/Category.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample20_category")
export class Category {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample20-join-without-relation/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Author} from "./Author";
import {Category} from "./Category";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";
Expand Down
3 changes: 1 addition & 2 deletions sample/sample21-custom-join-table-column/entity/Author.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Post} from "./Post";
import {OneToMany} from "../../../src/decorator/relations/OneToMany";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample21-custom-join-table-column/entity/Category.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";
import {Post} from "./Post";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample21-custom-join-table-column/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Author} from "./Author";
import {ManyToOne} from "../../../src/decorator/relations/ManyToOne";
import {Category} from "./Category";
Expand Down
3 changes: 1 addition & 2 deletions sample/sample23-nested-joins/entity/Author.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample23_author")
export class Author {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample23-nested-joins/entity/Category.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Author} from "./Author";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";
import {JoinTable} from "../../../src/decorator/relations/JoinTable";
Expand Down
3 changes: 1 addition & 2 deletions sample/sample23-nested-joins/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Category} from "./Category";
import {Author} from "./Author";
import {ManyToMany} from "../../../src/decorator/relations/ManyToMany";
Expand Down
3 changes: 1 addition & 2 deletions sample/sample25-insert-from-inverse-side/entity/Author.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {OneToMany} from "../../../src/decorator/relations/OneToMany";
import {Post} from "./Post";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample25-insert-from-inverse-side/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Author} from "./Author";
import {ManyToOne} from "../../../src/decorator/relations/ManyToOne";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample26-embedded-tables/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Counters} from "./Counters";
import {Embedded} from "../../../src/decorator/Embedded";

Expand Down
3 changes: 1 addition & 2 deletions sample/sample26-embedded-tables/entity/Question.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";
import {Counters} from "./Counters";
import {Embedded} from "../../../src/decorator/Embedded";

Expand Down
4 changes: 1 addition & 3 deletions sample/sample3-many-to-one/entity/Post.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table, ManyToOne} from "../../../src/index";
import {PostDetails} from "./PostDetails";
import {ManyToOne} from "../../../src/index";
import {PostCategory} from "./PostCategory";
import {PostAuthor} from "./PostAuthor";
import {PostInformation} from "./PostInformation";
Expand Down
4 changes: 1 addition & 3 deletions sample/sample3-many-to-one/entity/PostAuthor.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToMany} from "../../../src/index";
import {Post} from "./Post";
import {OneToMany} from "../../../src/index";

@Table("sample3_post_author")
export class PostAuthor {
Expand Down
3 changes: 1 addition & 2 deletions sample/sample3-many-to-one/entity/PostCategory.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table} from "../../../src/index";

@Table("sample3_post_category")
export class PostCategory {
Expand Down
4 changes: 1 addition & 3 deletions sample/sample3-many-to-one/entity/PostDetails.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToMany} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToMany} from "../../../src/index";
import {Post} from "./Post";

@Table("sample3_post_details")
Expand Down
4 changes: 1 addition & 3 deletions sample/sample3-many-to-one/entity/PostImage.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToMany} from "../../../src/index";
import {Post} from "./Post";
import {OneToMany} from "../../../src/index";

@Table("sample3_post_image")
export class PostImage {
Expand Down
4 changes: 1 addition & 3 deletions sample/sample3-many-to-one/entity/PostInformation.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {PrimaryColumn, Column} from "../../../src/index";
import {Table} from "../../../src/index";
import {OneToMany} from "../../../src/index";
import {PrimaryColumn, Column, Table, OneToMany} from "../../../src/index";
import {Post} from "./Post";

@Table("sample3_post_information")
Expand Down
Loading

0 comments on commit 2a59f62

Please sign in to comment.