博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tips on GORM, Avoid Error about "duplicate column name: id"
阅读量:5266 次
发布时间:2019-06-14

本文共 527 字,大约阅读时间需要 1 分钟。

The GORM is an super easy ORM solution for Go language.

But many people would get the error about 

duplicate column name: id

Usually this comes from the model definition which has duplicated ID,

package modelimport (    "github.com/jinzhu/gorm")type Job struct {    gorm.Model // Already has ID, CreatedAt, UpdatedAt, DeletedAt 4 fields    Name string}

We could remove the ID definition from our code and only use the one from grom.Model, or don't use the gorm.Model at all.

转载于:https://www.cnblogs.com/Jedimaster/p/8849013.html

你可能感兴趣的文章
JavaScript的学习要点
查看>>
我用到的 Linq 扩展方法
查看>>
18.1 线程简介
查看>>
C# 命令行解析
查看>>
Day13
查看>>
[leedcode 08]String to Integer (atoi)
查看>>
[leedcode 99] Recover Binary Search Tree
查看>>
日志组件logback的介绍及配置使用方法
查看>>
C# 模拟鼠标移动与点击
查看>>
Anroid ListView分组和悬浮Header实现
查看>>
Redis 安装(一)
查看>>
数组和链表的区别
查看>>
解决idea中找不到程序包和找不到符号的问题
查看>>
STM32_2 简单分析startup函数
查看>>
JavaScript原生Array常用方法
查看>>
产品经理手册
查看>>
Eclipse配置PHP及自动提示功能
查看>>
团体程序设计天梯赛-练习集L2-011. 玩转二叉树
查看>>
构建之法阅读笔记01
查看>>
tensorflow saver简介+Demo with linear-model
查看>>