Skip to content

Commit afa57fd

Browse files
authored
Merge pull request #197 from stat-kwon/master
Change max length in CostReportData model
2 parents b855307 + 85d9332 commit afa57fd

File tree

1 file changed

+1
-1
lines changed
  • src/spaceone/cost_analysis/model/cost_report_data

1 file changed

+1
-1
lines changed

src/spaceone/cost_analysis/model/cost_report_data/database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class CostReportData(MongoModel):
1212
report_month = StringField(max_length=40)
1313
is_confirmed = BooleanField(default=False)
1414
provider = StringField(max_length=40)
15-
product = StringField(max_length=40)
15+
product = StringField(max_length=255)
1616
service_account_name = StringField(max_length=255)
1717
data_source_name = StringField(max_length=255)
1818
project_name = StringField(max_length=40)

0 commit comments

Comments
 (0)