db: use a binary seaweedfs_fid
This commit is contained in:
parent
6ecf98f917
commit
8655e5fa04
@ -31,9 +31,9 @@ __PACKAGE__->table("media");
|
|||||||
|
|
||||||
=head2 seaweedfs_fid
|
=head2 seaweedfs_fid
|
||||||
|
|
||||||
data_type: 'text'
|
data_type: 'blob'
|
||||||
is_nullable: 0
|
is_nullable: 0
|
||||||
size: 33
|
size: 32
|
||||||
|
|
||||||
=head2 filename
|
=head2 filename
|
||||||
|
|
||||||
@ -53,7 +53,7 @@ __PACKAGE__->add_columns(
|
|||||||
"media_id",
|
"media_id",
|
||||||
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
|
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
|
||||||
"seaweedfs_fid",
|
"seaweedfs_fid",
|
||||||
{ data_type => "text", is_nullable => 0, size => 33 },
|
{ data_type => "blob", is_nullable => 0, size => 32 },
|
||||||
"filename",
|
"filename",
|
||||||
{ data_type => "text", is_nullable => 0, size => 256 },
|
{ data_type => "text", is_nullable => 0, size => 256 },
|
||||||
"content_type",
|
"content_type",
|
||||||
@ -100,8 +100,8 @@ Composing rels: L</media_tags> -> tag
|
|||||||
__PACKAGE__->many_to_many("tags", "media_tags", "tag");
|
__PACKAGE__->many_to_many("tags", "media_tags", "tag");
|
||||||
|
|
||||||
|
|
||||||
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-04 20:47:27
|
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-05 13:14:18
|
||||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E7eWNfGOqqI1Kub7Vv/WHQ
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gY4mMvaQ+cUpA3gtQc9pjg
|
||||||
|
|
||||||
|
|
||||||
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
CREATE TABLE media(
|
CREATE TABLE media(
|
||||||
media_id INTEGER PRIMARY KEY,
|
media_id INTEGER PRIMARY KEY,
|
||||||
seaweedfs_fid TEXT (33) NOT NULL,
|
seaweedfs_fid BLOB (32) NOT NULL,
|
||||||
filename TEXT (256) NOT NULL,
|
filename TEXT (256) NOT NULL,
|
||||||
content_type TEXT (256)
|
content_type TEXT (256)
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user