File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,11 @@ class OrgServiceConfigModel(Base):
12
12
org_id = Column ('org_id' , VARCHAR (225 ), nullable = False )
13
13
service_id = Column ('service_id' , VARCHAR (225 ), nullable = False )
14
14
free_calls = Column ('free_calls' , Integer , nullable = False )
15
- effective_start_date = Column ('effective_start_date' , TIMESTAMP (timezone = True ))
15
+ effective_start_date = Column (
16
+ 'effective_start_date' , TIMESTAMP (timezone = True ))
16
17
effective_end_date = Column ('effective_end_date' , TIMESTAMP (timezone = True ))
17
- created_at = Column ('created_at' , TIMESTAMP (timezone = True ), server_default = func .current_timestamp ())
18
+ created_at = Column ('created_at' , TIMESTAMP (
19
+ timezone = True ), server_default = func .current_timestamp ())
18
20
19
21
20
22
class UserOrgGroupModel (Base ):
You can’t perform that action at this time.
0 commit comments