#
sequelize
Here are 4,792 public repositories matching this topic...
Automatically generate bare sequelize models from your database.
-
Updated
May 5, 2022 - TypeScript
A proposal for the usage of Sequelize within an Express.JS application.
-
Updated
Mar 6, 2022 - JavaScript
Decorators and some other features for sequelize
-
Updated
May 24, 2022 - TypeScript
react
redux
nodejs
mysql
android
graphql
ios
babel
jwt
express
react-native
webpack
es6
ssr
sequelize
web-application
server-side-rendering
adobe-xd
seo-friendly
mobile-application
-
Updated
Mar 27, 2021 - JavaScript
Framework agnostic migration tool for Node.js
-
Updated
May 5, 2022 - TypeScript
NocoBase is a scalability-first, open-source no-code/low-code development platform.
nodejs
internal-tools
koa
drag-and-drop
sequelize
airtable
pluggable
ant-design
low-code
no-code
internal-tool
nocode
lowcode
no-code-framework
formily
-
Updated
May 25, 2022 - TypeScript
我是koala, 公众号【程序员成长指北】的作者, 专注Node.js技术栈分享,从前端到Node.js再到后端数据库,帮您成为优秀的Node.js全栈工程师。和我一起进阶全栈吧!
-
Updated
Apr 29, 2022 - HTML
react hooks + koa2 + sequelize + mysql 构建的个人博客。具备评论、通知、上传文章等等功能
-
Updated
Apr 29, 2022 - JavaScript
Easy CRUD for GraphQL.
-
Updated
May 25, 2022 - TypeScript
A Twitter-like news and social server for Egg. 微信小程序社区全栈解决方案
-
Updated
May 5, 2018 - JavaScript
A WhatsApp clone with React Native and Apollo (Tutorial)
react
nodejs
javascript
graphql
node
tutorial
react-native
react-navigation
apollo
reactjs
apollo-client
sequelize
tutorials
apollo-server
react-apollo
-
Updated
Aug 26, 2018 - JavaScript
Mayank0255
commented
Feb 14, 2021
Can watch this YouTube playlist for reference - The Net Ninja
Set up the Skeletons for all relevant components like-
- PostItem Component
- UserPanel Component
- TagPanel Component
- QuestionSection Component
- AnswerItem Component
- CommentCell Component
enhancement
Improvement in an existing feature or expanding a feature
feature
New feature
good first issue
hacktoberfest
A GUI Desktop App for export sequelize models from database automatically.
-
Updated
Apr 29, 2022 - JavaScript
Migration generator && runner for sequelize
-
Updated
Apr 9, 2022 - JavaScript
It's a hackathon-starter fork, but designed to use PostgreSQL by default (or MySQL)
-
Updated
Dec 29, 2017 - JavaScript
DhiWise Node.js API generator allows you to instantly generate secure REST APIs. Just supply your database schema to DhiWise, and a fully documented CRUD APIs will be ready for consumption in a few simple clicks. The generated code is clean, scalable, and customizable.
nodejs
javascript
mongodb
mongoose
rest-api
expressjs
sequelize
api-rest
restful-api
api-generator
nodejs-api
api-builder
quick-api-builder
-
Updated
Apr 29, 2022 - JavaScript
A Feathers service adapter for the Sequelize ORM. Supporting MySQL, MariaDB, Postgres, SQLite, and SQL Server
-
Updated
May 1, 2022 - JavaScript
Rest CRUD API for a simple application using Node. js, Express, Sequelize and MySQL
nodejs
mysql
express
crud
node
expressjs
sequelize
crud-application
crud-sample
crud-operation
crud-api
node-express
-
Updated
Oct 2, 2021 - JavaScript
Node.js, Express.js, Sequelize.js and PostgreSQL RESTful API
nodejs
api
postgres
express
node
rest
example
restful
postgresql
expressjs
sequelize
restful-api
sequelizejs
postgre
-
Updated
Apr 9, 2022 - JavaScript
Improve this page
Add a description, image, and links to the sequelize topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the sequelize topic, visit your repo's landing page and select "manage topics."
https://github.com/sequelize/sequelize/blob/8a1429d6044123bba3a3f312b2e0c74b0c829990/lib/model.js#L1271
If I create any model with
charset: 'utf8mb4', collate: 'utf8mb4_general_ci'
sequelize translates it to this for mysql
CREATE TABLE IF NOT EXISTS
tablename... ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8mb4_general_ci;
On stepping through the code, it seems that the issu