grae22 / TeamTracker

MIT License
0 stars 0 forks source link

DB population from CSV #9

Closed j-broo closed 7 years ago

j-broo commented 7 years ago

Perhaps we should load names/contact info from CSV? Makes implementation and editing a lot simpler, and farms out the data curation to text file. We simply clear table and insert values from file each time.

Would need to clear statuses when importing so people don't end up with old/unrelated statuses.

grae22 commented 7 years ago

Would you want to do this continuously (i.e. on a regular schedule) or as an option (probably via the settings page)?

j-broo commented 7 years ago

Definitely a once-off thing, on demand, via the settings page. I see no reason to do this regularly unless some other system is pushing info regularly to the CSV, which I don't see happening at this stage, if at all.

grae22 commented 7 years ago

Import should work - see ImportExample.txt in root folder.

grae22 commented 7 years ago

Export implemented.

j-broo commented 7 years ago

Import tested, works fine. I think this will suffice for now unless app scope changes in future.