markus
366dccde12
Instead to implement own logic how the database scheme should be updated or migrated to a newer or older version flucky use now instead the go-migrate package.
10 lines
125 B
SQL
10 lines
125 B
SQL
SELECT
|
|
device_id,
|
|
device_name,
|
|
device_location,
|
|
creation_date,
|
|
update_date
|
|
FROM
|
|
devices
|
|
ORDER BY
|
|
device_id ASC; |