Auto stash before merge of "develop" and "origin/develop"

pull/4/head
trivernis 5 years ago
parent 99c91f20a4
commit 46490115ee

@ -11,7 +11,6 @@ export class Friendship extends Model<Friendship> {
* The id of the first user
*/
@ForeignKey(() => User)
@PrimaryKey
@NotNull
@Column({allowNull: false})
public userId: number;
@ -20,7 +19,6 @@ export class Friendship extends Model<Friendship> {
* The id of the second user
*/
@ForeignKey(() => User)
@PrimaryKey
@NotNull
@Column({allowNull: false})
public friendId: number;

Loading…
Cancel
Save