月次コスト
Name | Type | Default | Nullable | Extra Definition | Children | Parents | Comment |
---|---|---|---|---|---|---|---|
cost_type_id | bigint(20) unsigned | false | cost_types | コスト種別ID | |||
cost_year | int(10) unsigned | false | 年 | ||||
cost_month | int(10) unsigned | false | 月 | ||||
cost_yen | int(10) unsigned | false | 料金(円) | ||||
created_at | datetime | current_timestamp() | false | 作成日時(UTC) | |||
updated_at | datetime | current_timestamp() | false | on update current_timestamp() | 更新日時(UTC) |
Name | Type | Definition |
---|---|---|
fk_monthly_costs_cost_type_id | FOREIGN KEY | FOREIGN KEY (cost_type_id) REFERENCES cost_types (id) |
PRIMARY | PRIMARY KEY | PRIMARY KEY (cost_type_id, cost_year, cost_month) |
Name | Definition |
---|---|
PRIMARY | PRIMARY KEY (cost_type_id, cost_year, cost_month) USING BTREE |
Generated by tbls