<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://truxwiki.com/index.php?action=history&amp;feed=atom&amp;title=Media_Table</id>
	<title>Media Table - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://truxwiki.com/index.php?action=history&amp;feed=atom&amp;title=Media_Table"/>
	<link rel="alternate" type="text/html" href="https://truxwiki.com/index.php?title=Media_Table&amp;action=history"/>
	<updated>2026-09-09T21:51:11Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://truxwiki.com/index.php?title=Media_Table&amp;diff=7109&amp;oldid=prev</id>
		<title>Sam: Created page with &quot;The &lt;code&gt;[Media]&lt;/code&gt; table holds information about the Media that was loaded.  =SQL= &lt;source lang=&quot;SQL&quot;&gt; CREATE TABLE &quot;Media&quot; (     &quot;ID&quot; uuid NOT NULL,     &quot;Name&quot; text DEF...&quot;</title>
		<link rel="alternate" type="text/html" href="https://truxwiki.com/index.php?title=Media_Table&amp;diff=7109&amp;oldid=prev"/>
		<updated>2024-02-03T11:15:10Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;The &amp;lt;code&amp;gt;[Media]&amp;lt;/code&amp;gt; table holds information about the Media that was loaded.  =SQL= &amp;lt;source lang=&amp;quot;SQL&amp;quot;&amp;gt; CREATE TABLE &amp;quot;Media&amp;quot; (     &amp;quot;ID&amp;quot; uuid NOT NULL,     &amp;quot;Name&amp;quot; text DEF...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The &amp;lt;code&amp;gt;[Media]&amp;lt;/code&amp;gt; table holds information about the Media that was loaded.&lt;br /&gt;
&lt;br /&gt;
=SQL=&lt;br /&gt;
&amp;lt;source lang=&amp;quot;SQL&amp;quot;&amp;gt;&lt;br /&gt;
CREATE TABLE &amp;quot;Media&amp;quot; (&lt;br /&gt;
    &amp;quot;ID&amp;quot; uuid NOT NULL,&lt;br /&gt;
    &amp;quot;Name&amp;quot; text DEFAULT ''::text NOT NULL,&lt;br /&gt;
    &amp;quot;Description&amp;quot; text DEFAULT ''::text NOT NULL,&lt;br /&gt;
    &amp;quot;MediaTypeID&amp;quot; smallint DEFAULT 0 NOT NULL,&lt;br /&gt;
    &amp;quot;Latitude&amp;quot; double precision DEFAULT 0 NOT NULL,&lt;br /&gt;
    &amp;quot;Longitude&amp;quot; double precision DEFAULT 0 NOT NULL,&lt;br /&gt;
    &amp;quot;CaseNumber&amp;quot; text DEFAULT ''::text NOT NULL,&lt;br /&gt;
    &amp;quot;Size&amp;quot; bigint DEFAULT 0 NOT NULL,&lt;br /&gt;
    &amp;quot;MediaStatusID&amp;quot; smallint DEFAULT 0 NOT NULL,&lt;br /&gt;
    &amp;quot;Created&amp;quot; timestamp without time zone DEFAULT (clock_timestamp() at time zone 'utc') NOT NULL,&lt;br /&gt;
    &amp;quot;CalculatedID&amp;quot; uuid DEFAULT '00000000-0000-0000-0000-000000000000'::uuid NOT NULL,&lt;br /&gt;
    &amp;quot;Originator&amp;quot; text DEFAULT ''::text NOT NULL,&lt;br /&gt;
    &amp;quot;PercentComplete&amp;quot; smallint DEFAULT 0 NOT NULL,&lt;br /&gt;
    &amp;quot;EvidenceBag&amp;quot; text DEFAULT ''::text,&lt;br /&gt;
    &amp;quot;LoadConfigurationID&amp;quot; integer DEFAULT 0 NOT NULL,&lt;br /&gt;
    &amp;quot;LastUpdated&amp;quot; timestamp without time zone DEFAULT (clock_timestamp() at time zone 'utc') NOT NULL,&lt;br /&gt;
    &amp;quot;Expires&amp;quot; timestamp without time zone DEFAULT (clock_timestamp() at time zone 'utc' + interval '99 years') NOT NULL&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Columns=&lt;br /&gt;
==&amp;lt;code&amp;gt;ID&amp;lt;/code&amp;gt;==&lt;br /&gt;
The globally unique identifier for this piece of Media.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;Name&amp;lt;/code&amp;gt;==&lt;br /&gt;
The name of this media.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;Description&amp;lt;/code&amp;gt;==&lt;br /&gt;
The long description of this media.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;MediaTypeID&amp;lt;/code&amp;gt;==&lt;br /&gt;
A field that represents the type of Media. Captured media, analyst notes, etc.&lt;br /&gt;
It corresponds to the &amp;lt;code&amp;gt;[ID]&amp;lt;/code&amp;gt; column of the &amp;lt;code&amp;gt;[MediaType]&amp;lt;/code&amp;gt; table.&lt;br /&gt;
It should contain one of [[Media_Types|these]] values.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;Latitude&amp;lt;/code&amp;gt;==&lt;br /&gt;
The [https://en.wikipedia.org/wiki/World_Geodetic_System#WGS84 WGS84] latitude portion of the GPS coordinates of where this piece of media was taken into custody.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;Longitude&amp;lt;/code&amp;gt;==&lt;br /&gt;
The [https://en.wikipedia.org/wiki/World_Geodetic_System#WGS84 WGS84] longitude portion of the GPS coordinates of where this piece of media was taken into custody.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;CaseNumber&amp;lt;/code&amp;gt;==&lt;br /&gt;
An identifier that has meaning to you.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;Size&amp;lt;/code&amp;gt;==&lt;br /&gt;
The number of bytes in the media before loading begins.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;MediaStatusID&amp;lt;/code&amp;gt;==&lt;br /&gt;
The identifier of the status of the media.&lt;br /&gt;
It corresponds to the &amp;lt;code&amp;gt;[ID]&amp;lt;/code&amp;gt; column of the &amp;lt;code&amp;gt;[MediaStatus]&amp;lt;/code&amp;gt; table.&lt;br /&gt;
It should contain one of [[Media_Status|these]] values.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;Created&amp;lt;/code&amp;gt;==&lt;br /&gt;
When this record was created.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;CalculatedID&amp;lt;/code&amp;gt;==&lt;br /&gt;
This value is calculated from the contents of the media if possible.&lt;br /&gt;
It is used to detect identical pieces of media.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;Originator&amp;lt;/code&amp;gt;==&lt;br /&gt;
The name of the organization or person who is responsible for this media.&lt;br /&gt;
For example, if you are a regional center, this column would identify the originating organization that asked you to look at the media.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;PercentComplete&amp;lt;/code&amp;gt;==&lt;br /&gt;
The percentage of media that has been loaded.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;EvidenceBag&amp;lt;/code&amp;gt;==&lt;br /&gt;
The label on the evidence bag where this media came from.&lt;br /&gt;
This will be blank if one does not exist.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;LoadConfigurationID&amp;lt;/code&amp;gt;==&lt;br /&gt;
The identification of the load configuration used to load data into this media.&lt;br /&gt;
It corresponds to the &amp;lt;code&amp;gt;[ID]&amp;lt;/code&amp;gt; column of the &amp;lt;code&amp;gt;[LoadConfiguration]&amp;lt;/code&amp;gt; table.&lt;br /&gt;
This is also known as Route identifier.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;LastUpdated&amp;lt;/code&amp;gt;==&lt;br /&gt;
When the status of this media last changed.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;code&amp;gt;Expires&amp;lt;/code&amp;gt;==&lt;br /&gt;
When Truxton will automatically purge this media.&lt;br /&gt;
When this date is reached, Truxton will delete the media without human intervention.&lt;/div&gt;</summary>
		<author><name>Sam</name></author>
		
	</entry>
</feed>