Skip to content
Snippets Groups Projects
Commit 1e656f8c authored by elit04's avatar elit04
Browse files

'boatType' and 'tags' attributes added to Boat.ts (boatType will be needed for BoatType APIs)

parent 70c96e38
No related branches found
No related tags found
No related merge requests found
......@@ -3,9 +3,11 @@ import { Sequelize, DataTypes, Model, Optional } from "sequelize";
interface BoatAttributes {
id: number;
name: string;
boatType: string;
status: boolean;
active: boolean;
seats: number;
tags: Array<string>;
}
export interface BoatAttributesInput extends Optional<BoatAttributes, "id"> { }
......@@ -13,9 +15,11 @@ export interface BoatAttributesOutput extends Required<BoatAttributes> { }
class Boat extends Model<BoatAttributes> implements BoatAttributes {
public id!: number;
public name!: string;
public boatType: string;
public status: boolean;
public active: boolean;
public seats: number;
public tags: Array<string>;
public readonly createdAt!: Date;
public readonly updatedAt!: Date;
......@@ -31,6 +35,10 @@ export const initBoat = async (sequelizeConnection: Sequelize) => {
type: new DataTypes.STRING(),
allowNull: false,
},
boatType: {
type: new DataTypes.STRING(),
allowNull: false,
},
status: {
type: DataTypes.BOOLEAN,
allowNull: false,
......@@ -43,6 +51,9 @@ export const initBoat = async (sequelizeConnection: Sequelize) => {
type: new DataTypes.INTEGER(),
allowNull: false,
},
tags: {
type: new DataTypes.ARRAY(DataTypes.STRING),
}
},
{
tableName: "boat",
......
......@@ -5,23 +5,29 @@ const seedBoatTable = async () => {
await Boat.create({
id: 1,
name: "boat one",
boatType: "canoe",
status: false,
active: true,
seats: 5,
tags: ["big", "yellow"]
});
await Boat.create({
id: 2,
name: "boat two",
boatType: "kayak",
status: false,
active: true,
seats: 4,
tags: ["red"]
});
await Boat.create({
id: 3,
name: "boat three",
boatType: "speedboat",
status: false,
active: false,
seats: 2,
tags: ["dangerous", "fast"]
});
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment