initial push
This commit is contained in:
10
backend/database/database.js
Normal file
10
backend/database/database.js
Normal file
@@ -0,0 +1,10 @@
|
||||
// database.js
|
||||
const { Sequelize } = require('sequelize');
|
||||
|
||||
const sequelize = new Sequelize('myapp', 'root', 'root', {
|
||||
host: 'localhost',
|
||||
dialect: 'mysql',
|
||||
logging: false,
|
||||
});
|
||||
|
||||
module.exports = sequelize;
|
||||
250
backend/database/myapp.sql
Normal file
250
backend/database/myapp.sql
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user