MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
summary | varchar(200) | 是 | 摘要 | 无索引 | ||
subject_code | bigint(20) | 是 | 会计科目代码 | 无索引 | ||
debit | decimal(11,2) | 是 | 借方金额 | 无索引 | ||
credit | decimal(11,2) | 是 | 贷方金额 | 无索引 | ||
template_id | bigint(20) | 是 | 记账主表id | 普通索引 | ||
create_time | timestamp | CURRENT_TIMESTAMP | 否 | 无索引 | CURRENT_TIMESTAMP | |
modify_time | timestamp | 2015-01-01 00:00:00 | 否 | 无索引 | 2015-01-01 00:00:00 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:易记账-记账模板详细表:https://open.yesapi.cn/tablelist/yesapi_yjz_prod_voucher_template_detail.html
-- 数据库大全:易记账-记账模板详细表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_yjz_prod_voucher_template_detail` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`summary` varchar(200) NOT NULL COMMENT '摘要',
`subject_code` bigint(20) NOT NULL COMMENT '会计科目代码',
`debit` decimal(11,2) NOT NULL COMMENT ' 借方金额',
`credit` decimal(11,2) NOT NULL COMMENT '贷方金额',
`template_id` bigint(20) NOT NULL COMMENT '记账主表id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '',
`modify_time` timestamp NOT NULL DEFAULT '2015-01-01 00:00:00' COMMENT '',
KEY `template_id` (`template_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '易记账-记账模板详细表';
复制后,到数据库执行,即可创建此数据库表。