trusty-cms 7.0.49 → 7.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/app/assets/builds/trusty_cms/ckeditor5.css +459 -81
- data/app/assets/builds/trusty_cms/ckeditor5.css.map +3 -3
- data/app/assets/builds/trusty_cms/ckeditor5.js +11247 -7722
- data/app/assets/builds/trusty_cms/ckeditor5.js.map +4 -4
- data/app/assets/stylesheets/admin/assets.scss +5 -0
- data/app/controllers/admin/assets_controller.rb +7 -14
- data/app/javascript/plugins/asset_tags/asset_tag_builder.js +7 -2
- data/app/models/asset.rb +144 -48
- data/app/models/asset_type.rb +29 -25
- data/app/views/admin/assets/_search_results.html.haml +2 -3
- data/app/views/admin/assets/edit.html.haml +2 -2
- data/app/views/admin/assets/remove.html.haml +1 -1
- data/app/views/admin/configuration/_clipped_edit.html.haml +1 -0
- data/app/views/admin/configuration/_clipped_show.html.haml +2 -0
- data/config/database.yml +30 -0
- data/config/initializers/trusty_cms_config.rb +3 -50
- data/config/locales/en.yml +6 -1
- data/config/routes.rb +0 -2
- data/db/migrate/20110606111250_update_configuration.rb +0 -16
- data/lib/trusty_cms/geometry.rb +117 -0
- data/lib/trusty_cms/version.rb +1 -1
- data/spec/dummy/log/development.log +345 -0
- data/spec/dummy/log/test.log +0 -0
- data/spec/dummy/tmp/cache/747/A70/TrustyCms%3A%3AConfig +0 -0
- data/spec/dummy/tmp/cache/85C/FA0/TrustyCms.cache_mtime +0 -0
- data/spec/dummy/tmp/local_secret.txt +1 -0
- data/spec/dummy/tmp/trusty_config_cache.txt +0 -0
- data/spec/lib/trusty_cms/geometry_spec.rb +28 -0
- data/spec/models/asset_spec.rb +235 -12
- data/trusty_cms.gemspec +1 -1
- data/vendor/extensions/clipped-extension/clipped_extension.rb +4 -9
- data/vendor/extensions/clipped-extension/lib/asset_tags.rb +10 -4
- data/vendor/extensions/clipped-extension/lib/generators/templates/clipped_config.rb +11 -35
- data/vendor/extensions/clipped-extension/lib/tasks/active_storage_tasks.rake +66 -0
- data/vendor/extensions/clipped-extension/lib/tasks/clipped_extension_tasks.rake +5 -2
- data/vendor/extensions/clipped-extension/lib/trusty_cms_clipped_extension/cloud.rb +32 -27
- data/yarn.lock +9 -9
- metadata +21 -8
- data/lib/trusty_cms/deprecation.rb +0 -15
- data/vendor/extensions/clipped-extension/lib/paperclip/frame_grab.rb +0 -73
- data/vendor/extensions/clipped-extension/lib/paperclip/geometry_transformation.rb +0 -80
- data/vendor/extensions/clipped-extension/lib/tasks/paperclip_tasks.rake +0 -79
|
@@ -17,54 +17,6 @@ Rails.application.reloader.to_prepare do
|
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
TrustyCms.config do |config|
|
|
20
|
-
config.namespace 'paperclip' do |pc|
|
|
21
|
-
pc.define 'url', default: '/system/:attachment/:id/:style/:basename:no_original_style.:extension', allow_change: true
|
|
22
|
-
pc.define 'path', default: ':rails_root/public/system/:attachment/:id/:style/:basename:no_original_style.:extension', allow_change: true
|
|
23
|
-
pc.define 'skip_filetype_validation', default: true, type: :boolean
|
|
24
|
-
pc.define 'storage', default: 'filesystem',
|
|
25
|
-
select_from: {
|
|
26
|
-
'File System' => 'filesystem',
|
|
27
|
-
'Amazon S3' => 'fog',
|
|
28
|
-
'Google Storage' => 'fog',
|
|
29
|
-
'Rackspace Cloud Files' => 'fog',
|
|
30
|
-
},
|
|
31
|
-
allow_blank: false,
|
|
32
|
-
allow_display: false
|
|
33
|
-
|
|
34
|
-
pc.namespace 'fog' do |fog|
|
|
35
|
-
fog.define 'provider', select_from: {
|
|
36
|
-
'Amazon S3' => 'AWS',
|
|
37
|
-
'Google Storage' => 'Google',
|
|
38
|
-
'Rackspace Cloud Files' => 'Rackspace',
|
|
39
|
-
}
|
|
40
|
-
fog.define 'directory'
|
|
41
|
-
fog.define 'public?', default: true
|
|
42
|
-
fog.define 'host'
|
|
43
|
-
end
|
|
44
|
-
|
|
45
|
-
pc.namespace 'google_storage' do |gs|
|
|
46
|
-
gs.define 'access_key_id'
|
|
47
|
-
gs.define 'secret_access_key'
|
|
48
|
-
end
|
|
49
|
-
|
|
50
|
-
pc.namespace 'rackspace' do |rs|
|
|
51
|
-
rs.define 'username'
|
|
52
|
-
rs.define 'api_key'
|
|
53
|
-
end
|
|
54
|
-
|
|
55
|
-
pc.namespace 's3' do |s3|
|
|
56
|
-
s3.define 'key'
|
|
57
|
-
s3.define 'secret'
|
|
58
|
-
s3.define 'region', select_from: {
|
|
59
|
-
'Asia North East' => 'ap-northeast-1',
|
|
60
|
-
'Asia South East' => 'ap-southeast-1',
|
|
61
|
-
'EU West' => 'eu-west-1',
|
|
62
|
-
'US East' => 'us-east-1',
|
|
63
|
-
'US West' => 'us-west-1',
|
|
64
|
-
}
|
|
65
|
-
end
|
|
66
|
-
end
|
|
67
|
-
|
|
68
20
|
config.namespace 'assets', allow_display: false do |assets|
|
|
69
21
|
assets.define 'create_image_thumbnails?', default: 'true'
|
|
70
22
|
assets.define 'create_video_thumbnails?', default: 'true'
|
|
@@ -77,7 +29,8 @@ Rails.application.reloader.to_prepare do
|
|
|
77
29
|
thumbs.define 'pdf', default: 'normal:size=640x640>,format=jpg|small:size=320x320>,format=jpg'
|
|
78
30
|
end
|
|
79
31
|
|
|
80
|
-
assets.define 'max_asset_size', default:
|
|
32
|
+
assets.define 'max_asset_size', default: 10, type: :integer, units: 'MB'
|
|
33
|
+
assets.define 'max_video_size', default: 50, type: :integer, units: 'MB'
|
|
81
34
|
assets.define 'display_size', default: 'normal', allow_blank: true
|
|
82
35
|
assets.define 'insertion_size', default: 'normal', allow_blank: true
|
|
83
36
|
end
|
|
@@ -89,4 +42,4 @@ Rails.application.reloader.to_prepare do
|
|
|
89
42
|
|
|
90
43
|
Admin::LayoutsController.send :helper, MultiSite::SiteChooserHelper
|
|
91
44
|
Admin::SnippetsController.send :helper, MultiSite::SiteChooserHelper
|
|
92
|
-
end
|
|
45
|
+
end
|
data/config/locales/en.yml
CHANGED
|
@@ -17,6 +17,10 @@ en:
|
|
|
17
17
|
attributes:
|
|
18
18
|
asset:
|
|
19
19
|
blank: 'You must choose a file to upload!'
|
|
20
|
+
content_type: '%{filename} is not a supported file type.'
|
|
21
|
+
max_size_error: 'File is too large (maximum is %{max_size}).'
|
|
22
|
+
min_size_error: 'File is too small (minimum is %{min_size}).'
|
|
23
|
+
wrong_size_error: 'File size must be between 1 byte and %{limit_mb} MB'
|
|
20
24
|
page:
|
|
21
25
|
attributes:
|
|
22
26
|
slug:
|
|
@@ -109,7 +113,7 @@ en:
|
|
|
109
113
|
remove_from_page: 'Remove from page'
|
|
110
114
|
reorder: 'Reorder'
|
|
111
115
|
remove: 'Remove'
|
|
112
|
-
refresh_assets_rake_task: 'For better results please log into your server and run <code>rake
|
|
116
|
+
refresh_assets_rake_task: 'For better results please log into your server and run <code>rake active_storage:refresh class=Asset</code>.'
|
|
113
117
|
replace_file: 'Replace File'
|
|
114
118
|
save_and_upload: 'Save and Upload'
|
|
115
119
|
search_assets: 'Search for assets'
|
|
@@ -134,6 +138,7 @@ en:
|
|
|
134
138
|
display_size: 'Display Size'
|
|
135
139
|
insertion_size: 'Insertion Size'
|
|
136
140
|
max_asset_size: 'Max Asset Size'
|
|
141
|
+
max_video_size: 'Max Video Size'
|
|
137
142
|
path: 'Path'
|
|
138
143
|
s3:
|
|
139
144
|
bucket: 'Bucket'
|
data/config/routes.rb
CHANGED
|
@@ -2,22 +2,6 @@ class UpdateConfiguration < ActiveRecord::Migration[5.2]
|
|
|
2
2
|
def self.up
|
|
3
3
|
if TrustyCms.config.table_exists?
|
|
4
4
|
|
|
5
|
-
puts "Importing paperclip configuration"
|
|
6
|
-
%w{url path skip_filetype_validation storage}.select{|k| !!TrustyCms.config["assets.#{k}"] }.each do |k|
|
|
7
|
-
begin
|
|
8
|
-
TrustyCms.config["paperclip.#{k}"] = TrustyCms.config["assets.#{k}"]
|
|
9
|
-
rescue ActiveRecord::RecordInvalid => e
|
|
10
|
-
print "Oops! There was trouble setting #{k} to '#{TrustyCms.config["assets.#{k}"]}'"
|
|
11
|
-
print "\nSetting it to 'fog'. Please see the clipped extension README for more details."
|
|
12
|
-
TrustyCms.config["paperclip.#{k}"] = 'fog'
|
|
13
|
-
end
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
puts "Importing s3 storage configuration"
|
|
17
|
-
%w{bucket key secret host_alias}.select{|k| !!TrustyCms.config["assets.s3.#{k}"] }.each do |k|
|
|
18
|
-
TrustyCms.config["paperclip.s3.#{k}"] = TrustyCms.config["assets.s3.#{k}"]
|
|
19
|
-
end
|
|
20
|
-
|
|
21
5
|
puts "Importing thumbnail configuration"
|
|
22
6
|
if thumbnails = TrustyCms.config["assets.additional_thumbnails"]
|
|
23
7
|
old_styles = thumbnails.to_s.gsub(' ','').split(',').collect{|s| s.split('=')}.inject({}) {|ha, (k, v)| ha[k.to_sym] = v; ha}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
module TrustyCms
|
|
2
|
+
class StyleError < StandardError; end
|
|
3
|
+
class TransformationError < StandardError; end
|
|
4
|
+
|
|
5
|
+
class Geometry
|
|
6
|
+
attr_reader :width, :height, :modifier
|
|
7
|
+
|
|
8
|
+
def self.parse(value)
|
|
9
|
+
return value if value.is_a?(Geometry)
|
|
10
|
+
|
|
11
|
+
match = value.to_s.strip.match(/\A(\d*)x(\d*)([%<>#^!@])?\z/)
|
|
12
|
+
raise StyleError, "Unrecognized geometry: #{value.inspect}" unless match
|
|
13
|
+
|
|
14
|
+
width = match[1].to_s.empty? ? 0 : match[1].to_i
|
|
15
|
+
height = match[2].to_s.empty? ? 0 : match[2].to_i
|
|
16
|
+
modifier = match[3]
|
|
17
|
+
new(width, height, modifier)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def initialize(width, height = nil, modifier = nil)
|
|
21
|
+
@width = width.to_i
|
|
22
|
+
@height = height.to_i
|
|
23
|
+
@modifier = modifier
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def without_modifier
|
|
27
|
+
Geometry.new(width, height)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def transformed_by(other)
|
|
31
|
+
other = Geometry.parse(other)
|
|
32
|
+
return other.without_modifier if self =~ other || ['#', '!', '^'].include?(other.modifier)
|
|
33
|
+
|
|
34
|
+
raise TransformationError, 'geometry is not transformable without both width and height' if height.zero? || width.zero?
|
|
35
|
+
|
|
36
|
+
case other.modifier
|
|
37
|
+
when '>'
|
|
38
|
+
(other.width < width || other.height < height) ? scaled_to_fit(other) : self
|
|
39
|
+
when '<'
|
|
40
|
+
(other.width > width && other.height > height) ? scaled_to_fit(other) : self
|
|
41
|
+
when '%'
|
|
42
|
+
scaled_by(other)
|
|
43
|
+
when '@'
|
|
44
|
+
scaled_by((other.width * 100).fdiv(width * height))
|
|
45
|
+
else
|
|
46
|
+
scaled_to_fit(other)
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
alias * transformed_by
|
|
50
|
+
|
|
51
|
+
def ==(other)
|
|
52
|
+
to_s == other.to_s
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def =~(other)
|
|
56
|
+
height.to_i == other.height.to_i && width.to_i == other.width.to_i
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def scaled_to_fit(other)
|
|
60
|
+
if other.width.positive? && other.height.zero?
|
|
61
|
+
Geometry.new(other.width, height * other.width / width)
|
|
62
|
+
elsif other.width.zero? && other.height.positive?
|
|
63
|
+
Geometry.new(width * other.height / height, other.height)
|
|
64
|
+
else
|
|
65
|
+
product_width = other.width * height
|
|
66
|
+
product_height = other.height * width
|
|
67
|
+
if product_width == product_height
|
|
68
|
+
other.without_modifier
|
|
69
|
+
elsif product_width > product_height
|
|
70
|
+
scaled_width = (width * other.height.fdiv(height)).round
|
|
71
|
+
Geometry.new(scaled_width, other.height)
|
|
72
|
+
else
|
|
73
|
+
scaled_height = (height * other.width.fdiv(width)).round
|
|
74
|
+
Geometry.new(other.width, scaled_height)
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
def scaled_by(other)
|
|
80
|
+
if other.is_a?(Numeric)
|
|
81
|
+
scaled_width = (width * other.fdiv(100)).round
|
|
82
|
+
scaled_height = (height * other.fdiv(100)).round
|
|
83
|
+
return Geometry.new(scaled_width, scaled_height)
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
other = Geometry.new("#{other}%") unless other.is_a?(Geometry)
|
|
87
|
+
if other.height.positive?
|
|
88
|
+
Geometry.new(width * other.width / 100, height * other.height / 100)
|
|
89
|
+
else
|
|
90
|
+
Geometry.new(width * other.width / 100, height * other.width / 100)
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
def aspect
|
|
95
|
+
return nil if width.to_f == 0.0 || height.to_f == 0.0
|
|
96
|
+
|
|
97
|
+
width.to_f / height.to_f
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def square?
|
|
101
|
+
width.to_i == height.to_i
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
def vertical?
|
|
105
|
+
height.to_i > width.to_i
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
def horizontal?
|
|
109
|
+
width.to_i > height.to_i
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
def to_s
|
|
113
|
+
suffix = modifier.to_s
|
|
114
|
+
"#{width}x#{height}#{suffix}"
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
end
|
data/lib/trusty_cms/version.rb
CHANGED
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE DATABASE `trusty_cms_dev` DEFAULT CHARACTER SET `utf8mb4`[0m
|
|
2
|
+
[1m[35m (15.0ms)[0m [1m[35mCREATE DATABASE `trusty_cms_test` DEFAULT COLLATE `utf8mb4_bin`[0m
|
|
3
|
+
[1m[35m (40.9ms)[0m [1m[35mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL PRIMARY KEY)[0m
|
|
4
|
+
[1m[35m (14.6ms)[0m [1m[35mCREATE TABLE `ar_internal_metadata` (`key` varchar(255) NOT NULL PRIMARY KEY, `value` varchar(255), `created_at` datetime(6) NOT NULL, `updated_at` datetime(6) NOT NULL)[0m
|
|
5
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT GET_LOCK('6658685849647950510', 0)[0m
|
|
6
|
+
[1m[36mActiveRecord::SchemaMigration Load (12.3ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m
|
|
7
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.8ms)[0m [1m[34mSELECT * FROM `ar_internal_metadata` WHERE `ar_internal_metadata`.`key` = 'environment' ORDER BY `ar_internal_metadata`.`key` ASC LIMIT 1[0m
|
|
8
|
+
[1m[36mActiveRecord::InternalMetadata Create (1.5ms)[0m [1m[32mINSERT INTO `ar_internal_metadata` (`key`, `value`, `created_at`, `updated_at`) VALUES ('environment', 'development', '2026-04-20 21:10:45.666344', '2026-04-20 21:10:45.666346')[0m
|
|
9
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT RELEASE_LOCK('6658685849647950510')[0m
|
|
10
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m
|
|
11
|
+
[1m[35m (13.1ms)[0m [1m[35mDROP TABLE `ar_internal_metadata`[0m
|
|
12
|
+
[1m[35m (13.9ms)[0m [1m[35mDROP TABLE `schema_migrations`[0m
|
|
13
|
+
[1m[35m (13.9ms)[0m [1m[35mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL PRIMARY KEY)[0m
|
|
14
|
+
[1m[35m (8.6ms)[0m [1m[35mCREATE TABLE `ar_internal_metadata` (`key` varchar(255) NOT NULL PRIMARY KEY, `value` varchar(255), `created_at` datetime(6) NOT NULL, `updated_at` datetime(6) NOT NULL)[0m
|
|
15
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT GET_LOCK('6658685849647950510', 0)[0m
|
|
16
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m
|
|
17
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.9ms)[0m [1m[34mSELECT * FROM `ar_internal_metadata` WHERE `ar_internal_metadata`.`key` = 'environment' ORDER BY `ar_internal_metadata`.`key` ASC LIMIT 1[0m
|
|
18
|
+
[1m[36mActiveRecord::InternalMetadata Create (1.0ms)[0m [1m[32mINSERT INTO `ar_internal_metadata` (`key`, `value`, `created_at`, `updated_at`) VALUES ('environment', 'development', '2026-04-20 21:11:12.190041', '2026-04-20 21:11:12.190057')[0m
|
|
19
|
+
Migrating to CreateTrustyTables (20260420211055)
|
|
20
|
+
[1m[35m (2.1ms)[0m [1m[35mDROP TABLE IF EXISTS `config`[0m
|
|
21
|
+
[1m[35m (12.9ms)[0m [1m[35mCREATE TABLE `config` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `key` varchar(40) DEFAULT '' NOT NULL, `value` varchar(255) DEFAULT '')[0m
|
|
22
|
+
[1m[35m (12.8ms)[0m [1m[35mCREATE UNIQUE INDEX `key` ON `config` (`key`)[0m
|
|
23
|
+
[1m[35m (1.3ms)[0m [1m[35mDROP TABLE IF EXISTS `pages`[0m
|
|
24
|
+
[1m[35m (14.3ms)[0m [1m[35mCREATE TABLE `pages` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `title` varchar(255), `slug` varchar(100), `breadcrumb` varchar(160), `class_name` varchar(25), `status_id` int DEFAULT 1 NOT NULL, `parent_id` int, `layout_id` int, `created_at` datetime, `updated_at` datetime, `published_at` datetime, `created_by` int, `updated_by` int)[0m
|
|
25
|
+
[1m[35m (1.2ms)[0m [1m[35mDROP TABLE IF EXISTS `page_parts`[0m
|
|
26
|
+
[1m[35m (16.2ms)[0m [1m[35mCREATE TABLE `page_parts` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(100), `filter` varchar(25), `content` text, `page_id` int)[0m
|
|
27
|
+
[1m[35m (1.1ms)[0m [1m[35mDROP TABLE IF EXISTS `snippets`[0m
|
|
28
|
+
[1m[35m (16.8ms)[0m [1m[35mCREATE TABLE `snippets` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(100) DEFAULT '' NOT NULL, `filter` varchar(25), `content` text, `created_at` datetime, `updated_at` datetime, `created_by` int, `updated_by` int)[0m
|
|
29
|
+
[1m[35m (15.8ms)[0m [1m[35mCREATE UNIQUE INDEX `name` ON `snippets` (`name`)[0m
|
|
30
|
+
[1m[35m (0.9ms)[0m [1m[35mDROP TABLE IF EXISTS `layouts`[0m
|
|
31
|
+
[1m[35m (13.8ms)[0m [1m[35mCREATE TABLE `layouts` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(100), `content` text, `created_at` datetime, `updated_at` datetime, `created_by` int, `updated_by` int)[0m
|
|
32
|
+
[1m[35m (8.7ms)[0m [1m[35mDROP TABLE IF EXISTS `users`[0m
|
|
33
|
+
[1m[35m (14.6ms)[0m [1m[35mCREATE TABLE `users` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(100), `email` varchar(255), `login` varchar(40) DEFAULT '' NOT NULL, `password` varchar(40), `admin` tinyint(1) DEFAULT FALSE NOT NULL, `developer` tinyint(1) DEFAULT FALSE NOT NULL, `created_at` datetime, `updated_at` datetime, `created_by` int, `updated_by` int, `salt` varchar(255))[0m
|
|
34
|
+
[1m[35m (13.0ms)[0m [1m[35mCREATE UNIQUE INDEX `login` ON `users` (`login`)[0m
|
|
35
|
+
[1m[36mActiveRecord::SchemaMigration Create (1.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211055')[0m
|
|
36
|
+
Migrating to InsertInitialData (20260420211056)
|
|
37
|
+
[1m[36mActiveRecord::SchemaMigration Create (6.9ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211056')[0m
|
|
38
|
+
Migrating to RenameFilterColumn (20260420211057)
|
|
39
|
+
[1m[35m (16.8ms)[0m [1m[35mALTER TABLE `page_parts` RENAME COLUMN `filter` TO `filter_id`[0m
|
|
40
|
+
[1m[35m (6.2ms)[0m [1m[35mALTER TABLE `snippets` RENAME COLUMN `filter` TO `filter_id`[0m
|
|
41
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211057')[0m
|
|
42
|
+
Migrating to AddVirtualColumnToPage (20260420211058)
|
|
43
|
+
[1m[35m (19.3ms)[0m [1m[35mALTER TABLE `pages` ADD `virtual` tinyint(1) DEFAULT FALSE NOT NULL[0m
|
|
44
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.7ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211058')[0m
|
|
45
|
+
Migrating to RemoveUserLoginIndex (20260420211059)
|
|
46
|
+
[1m[35m (3.7ms)[0m [1m[35mDROP INDEX `login` ON `users`[0m
|
|
47
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211059')[0m
|
|
48
|
+
Migrating to RemoveVirtualColumnFromPage (20260420211060)
|
|
49
|
+
[1m[35m (17.9ms)[0m [1m[35mALTER TABLE `pages` DROP COLUMN `virtual`[0m
|
|
50
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211060')[0m
|
|
51
|
+
Migrating to AddVirtualColumnToPageAgain (20260420211061)
|
|
52
|
+
[1m[35m (12.8ms)[0m [1m[35mALTER TABLE `pages` ADD `virtual` tinyint(1) DEFAULT FALSE NOT NULL[0m
|
|
53
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211061')[0m
|
|
54
|
+
Migrating to AddContentTypeFieldToLayout (20260420211062)
|
|
55
|
+
[1m[35m (20.6ms)[0m [1m[35mALTER TABLE `layouts` ADD `content_type` varchar(40)[0m
|
|
56
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211062')[0m
|
|
57
|
+
Migrating to CreateSites (20260420211063)
|
|
58
|
+
[1m[35m (5.4ms)[0m [1m[35mCREATE TABLE `sites` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(255), `domain` varchar(255), `homepage_id` int)[0m
|
|
59
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211063')[0m
|
|
60
|
+
Migrating to AddOrderToSites (20260420211064)
|
|
61
|
+
[1m[35m (17.9ms)[0m [1m[35mALTER TABLE `sites` ADD `position` int DEFAULT 0[0m
|
|
62
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.6ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211064')[0m
|
|
63
|
+
Migrating to CreateExtensionMeta (20260420211065)
|
|
64
|
+
[1m[35m (0.4ms)[0m [1m[35mDROP TABLE IF EXISTS `extension_meta`[0m
|
|
65
|
+
[1m[35m (6.0ms)[0m [1m[35mCREATE TABLE `extension_meta` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(255), `schema_version` int DEFAULT 0, `enabled` tinyint(1) DEFAULT TRUE)[0m
|
|
66
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.6ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211065')[0m
|
|
67
|
+
Migrating to AddNotesFieldToUser (20260420211066)
|
|
68
|
+
[1m[35m (32.5ms)[0m [1m[35mALTER TABLE `users` ADD `notes` text[0m
|
|
69
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211066')[0m
|
|
70
|
+
Migrating to RenameConfigDefaultPartsKey (20260420211067)
|
|
71
|
+
[1m[36mTrustyCms::Config Load (0.2ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'default.parts' LIMIT 1[0m
|
|
72
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211067')[0m
|
|
73
|
+
Migrating to AddOptimisticLocking (20260420211068)
|
|
74
|
+
[1m[35m (22.6ms)[0m [1m[35mALTER TABLE `pages` ADD `lock_version` int DEFAULT 0[0m
|
|
75
|
+
[1m[35m (61.6ms)[0m [1m[35mALTER TABLE `layouts` ADD `lock_version` int DEFAULT 0[0m
|
|
76
|
+
[1m[35m (53.1ms)[0m [1m[35mALTER TABLE `snippets` ADD `lock_version` int DEFAULT 0[0m
|
|
77
|
+
[1m[35m (94.7ms)[0m [1m[35mALTER TABLE `users` ADD `lock_version` int DEFAULT 0[0m
|
|
78
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211068')[0m
|
|
79
|
+
Migrating to AddSessions (20260420211069)
|
|
80
|
+
[1m[35m (47.7ms)[0m [1m[35mCREATE TABLE `sessions` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `session_id` varchar(255), `data` text, `updated_at` datetime)[0m
|
|
81
|
+
[1m[35m (8.7ms)[0m [1m[35mCREATE INDEX `index_sessions_on_session_id` ON `sessions` (`session_id`)[0m
|
|
82
|
+
[1m[35m (8.0ms)[0m [1m[35mCREATE INDEX `index_sessions_on_updated_at` ON `sessions` (`updated_at`)[0m
|
|
83
|
+
[1m[36mActiveRecord::SchemaMigration Create (1.1ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211069')[0m
|
|
84
|
+
Migrating to RenameCreatedByUpdatedByColumns (20260420211070)
|
|
85
|
+
[1m[35m (12.8ms)[0m [1m[35mALTER TABLE `pages` RENAME COLUMN `created_by` TO `created_by_id`[0m
|
|
86
|
+
[1m[35m (7.3ms)[0m [1m[35mALTER TABLE `pages` RENAME COLUMN `updated_by` TO `updated_by_id`[0m
|
|
87
|
+
[1m[35m (8.1ms)[0m [1m[35mALTER TABLE `snippets` RENAME COLUMN `created_by` TO `created_by_id`[0m
|
|
88
|
+
[1m[35m (4.4ms)[0m [1m[35mALTER TABLE `snippets` RENAME COLUMN `updated_by` TO `updated_by_id`[0m
|
|
89
|
+
[1m[35m (5.2ms)[0m [1m[35mALTER TABLE `layouts` RENAME COLUMN `created_by` TO `created_by_id`[0m
|
|
90
|
+
[1m[35m (6.2ms)[0m [1m[35mALTER TABLE `layouts` RENAME COLUMN `updated_by` TO `updated_by_id`[0m
|
|
91
|
+
[1m[35m (4.8ms)[0m [1m[35mALTER TABLE `users` RENAME COLUMN `created_by` TO `created_by_id`[0m
|
|
92
|
+
[1m[35m (5.7ms)[0m [1m[35mALTER TABLE `users` RENAME COLUMN `updated_by` TO `updated_by_id`[0m
|
|
93
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.7ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211070')[0m
|
|
94
|
+
Migrating to AddDescriptionAndKeywordsToPages (20260420211071)
|
|
95
|
+
[1m[35m (12.3ms)[0m [1m[35mALTER TABLE `pages` ADD `description` varchar(255)[0m
|
|
96
|
+
[1m[35m (14.2ms)[0m [1m[35mALTER TABLE `pages` ADD `keywords` varchar(255)[0m
|
|
97
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211071')[0m
|
|
98
|
+
Migrating to AddSessionInfoToUsers (20260420211072)
|
|
99
|
+
[1m[35m (10.7ms)[0m [1m[35mALTER TABLE `users` ADD `session_token` varchar(255)[0m
|
|
100
|
+
[1m[35m (14.3ms)[0m [1m[35mALTER TABLE `users` ADD `session_expire` datetime[0m
|
|
101
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211072')[0m
|
|
102
|
+
Migrating to RemoveSessionExpireFromUsers (20260420211073)
|
|
103
|
+
[1m[35m (11.1ms)[0m [1m[35mALTER TABLE `users` DROP COLUMN `session_expire`[0m
|
|
104
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211073')[0m
|
|
105
|
+
Migrating to AddAdminFieldsToSites (20260420211074)
|
|
106
|
+
[1m[35m (5.5ms)[0m [1m[35mALTER TABLE `sites` ADD `created_by_id` int[0m
|
|
107
|
+
[1m[35m (9.0ms)[0m [1m[35mALTER TABLE `sites` ADD `created_at` datetime[0m
|
|
108
|
+
[1m[35m (17.4ms)[0m [1m[35mALTER TABLE `sites` ADD `updated_by_id` int[0m
|
|
109
|
+
[1m[35m (8.1ms)[0m [1m[35mALTER TABLE `sites` ADD `updated_at` datetime[0m
|
|
110
|
+
[1m[35m (4.3ms)[0m [1m[35mALTER TABLE `sites` ADD `subtitle` varchar(255)[0m
|
|
111
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211074')[0m
|
|
112
|
+
Migrating to AddSites (20260420211075)
|
|
113
|
+
[1m[35m (8.1ms)[0m [1m[35mALTER TABLE `layouts` ADD `site_id` int[0m
|
|
114
|
+
[1m[35m (7.3ms)[0m [1m[35mALTER TABLE `snippets` ADD `site_id` int[0m
|
|
115
|
+
[1m[35m (5.9ms)[0m [1m[35mALTER TABLE `users` ADD `site_id` int[0m
|
|
116
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211075')[0m
|
|
117
|
+
Migrating to SiteAbbreviation (20260420211076)
|
|
118
|
+
[1m[35m (7.3ms)[0m [1m[35mALTER TABLE `sites` ADD `abbreviation` varchar(255)[0m
|
|
119
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211076')[0m
|
|
120
|
+
Migrating to RecreateNonUniqueIndexOnSnippetsName (20260420211077)
|
|
121
|
+
[1m[35m (3.4ms)[0m [1m[35mDROP INDEX `name` ON `snippets`[0m
|
|
122
|
+
[1m[35m (3.8ms)[0m [1m[35mCREATE UNIQUE INDEX `name_site_id` ON `snippets` (`name`, `site_id`)[0m
|
|
123
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211077')[0m
|
|
124
|
+
Migrating to AddSiteIdToPages (20260420211078)
|
|
125
|
+
[1m[35m (7.9ms)[0m [1m[35mALTER TABLE `pages` ADD `site_id` int[0m
|
|
126
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE INDEX `index_pages_on_site_id` ON `pages` (`site_id`)[0m
|
|
127
|
+
[1m[36mSite Load (0.2ms)[0m [1m[34mSELECT `sites`.* FROM `sites` ORDER BY position ASC[0m
|
|
128
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.7ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211078')[0m
|
|
129
|
+
Migrating to AddBaseDomainToSites (20260420211079)
|
|
130
|
+
[1m[35m (10.7ms)[0m [1m[35mALTER TABLE `sites` ADD `base_domain` varchar(255)[0m
|
|
131
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211079')[0m
|
|
132
|
+
Migrating to CreateAssets (20260420211080)
|
|
133
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE `assets` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `caption` varchar(255), `title` varchar(255))[0m
|
|
134
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211080')[0m
|
|
135
|
+
Migrating to CreatePaperclipAttributes (20260420211081)
|
|
136
|
+
[1m[35m (8.9ms)[0m [1m[35mALTER TABLE `assets` ADD `asset_file_name` varchar(255)[0m
|
|
137
|
+
[1m[35m (4.0ms)[0m [1m[35mALTER TABLE `assets` ADD `asset_content_type` varchar(255)[0m
|
|
138
|
+
[1m[35m (3.6ms)[0m [1m[35mALTER TABLE `assets` ADD `asset_file_size` int[0m
|
|
139
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211081')[0m
|
|
140
|
+
Migrating to CreateUserObserver (20260420211082)
|
|
141
|
+
[1m[35m (6.6ms)[0m [1m[35mALTER TABLE `assets` ADD `created_by` int[0m
|
|
142
|
+
[1m[35m (7.2ms)[0m [1m[35mALTER TABLE `assets` ADD `updated_by` int[0m
|
|
143
|
+
[1m[35m (6.8ms)[0m [1m[35mALTER TABLE `assets` ADD `created_at` datetime[0m
|
|
144
|
+
[1m[35m (7.7ms)[0m [1m[35mALTER TABLE `assets` ADD `updated_at` datetime[0m
|
|
145
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211082')[0m
|
|
146
|
+
Migrating to CreatePageAttachments (20260420211083)
|
|
147
|
+
[1m[35m (4.2ms)[0m [1m[35mCREATE TABLE `page_attachments` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `asset_id` int, `page_id` int, `position` int)[0m
|
|
148
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211083')[0m
|
|
149
|
+
Migrating to RenameUsers (20260420211084)
|
|
150
|
+
[1m[35m (1.4ms)[0m [1m[35mALTER TABLE `assets` RENAME COLUMN `created_by` TO `created_by_id`[0m
|
|
151
|
+
[1m[35m (1.3ms)[0m [1m[35mALTER TABLE `assets` RENAME COLUMN `updated_by` TO `updated_by_id`[0m
|
|
152
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211084')[0m
|
|
153
|
+
Migrating to AddIndexes (20260420211085)
|
|
154
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE INDEX `pages_class_name` ON `pages` (`class_name`)[0m
|
|
155
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE INDEX `pages_parent_id` ON `pages` (`parent_id`)[0m
|
|
156
|
+
[1m[35m (2.0ms)[0m [1m[35mCREATE INDEX `pages_child_slug` ON `pages` (`slug`, `parent_id`)[0m
|
|
157
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE INDEX `pages_published` ON `pages` (`virtual`, `status_id`)[0m
|
|
158
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX `parts_by_page` ON `page_parts` (`page_id`, `name`)[0m
|
|
159
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211085')[0m
|
|
160
|
+
Migrating to AddUserLanguage (20260420211086)
|
|
161
|
+
[1m[35m (9.2ms)[0m [1m[35mALTER TABLE `users` ADD `language` varchar(255)[0m
|
|
162
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211086')[0m
|
|
163
|
+
Migrating to RenameDeveloperRoleToDesigner (20260420211087)
|
|
164
|
+
[1m[35m (2.3ms)[0m [1m[35mALTER TABLE `users` RENAME COLUMN `developer` TO `designer`[0m
|
|
165
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211087')[0m
|
|
166
|
+
Migrating to ChangeUserLanguageToLocale (20260420211088)
|
|
167
|
+
[1m[35m (2.7ms)[0m [1m[35mALTER TABLE `users` RENAME COLUMN `language` TO `locale`[0m
|
|
168
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211088')[0m
|
|
169
|
+
Migrating to AddPageFields (20260420211089)
|
|
170
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE `page_fields` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `page_id` int, `name` varchar(255), `content` varchar(255))[0m
|
|
171
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE INDEX `index_page_fields_on_page_id` ON `page_fields` (`page_id`)[0m
|
|
172
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.1ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211089')[0m
|
|
173
|
+
Migrating to ConvertPageMetas (20260420211090)
|
|
174
|
+
[1m[35m (23.7ms)[0m [1m[35mALTER TABLE `pages` DROP COLUMN `keywords`[0m
|
|
175
|
+
[1m[35m (150.1ms)[0m [1m[35mALTER TABLE `pages` DROP COLUMN `description`[0m
|
|
176
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.7ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211090')[0m
|
|
177
|
+
Migrating to AddFieldNameIndex (20260420211091)
|
|
178
|
+
[1m[35m (4.4ms)[0m [1m[35mDROP INDEX `index_page_fields_on_page_id` ON `page_fields`[0m
|
|
179
|
+
[1m[35m (7.0ms)[0m [1m[35mCREATE INDEX `index_page_fields_on_page_id_and_name_and_content` ON `page_fields` (`page_id`, `name`, `content`)[0m
|
|
180
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211091')[0m
|
|
181
|
+
Migrating to AssetUuid (20260420211092)
|
|
182
|
+
[1m[35m (12.8ms)[0m [1m[35mALTER TABLE `assets` ADD `uuid` varchar(255)[0m
|
|
183
|
+
[1m[36mAsset Load (0.4ms)[0m [1m[34mSELECT `assets`.* FROM `assets` ORDER BY created_at DESC[0m
|
|
184
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211092')[0m
|
|
185
|
+
Migrating to UpdateConfiguration (20260420211093)
|
|
186
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
187
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211093')[0m
|
|
188
|
+
Migrating to Dimensions (20260420211094)
|
|
189
|
+
[1m[35m (20.5ms)[0m [1m[35mALTER TABLE `assets` ADD `original_width` int[0m
|
|
190
|
+
[1m[35m (26.6ms)[0m [1m[35mALTER TABLE `assets` ADD `original_height` int[0m
|
|
191
|
+
[1m[35m (17.0ms)[0m [1m[35mALTER TABLE `assets` ADD `original_extension` varchar(255)[0m
|
|
192
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211094')[0m
|
|
193
|
+
Migrating to AddAllowedChildrenCacheToPages (20260420211095)
|
|
194
|
+
[1m[35m (45.2ms)[0m [1m[35mALTER TABLE `pages` ADD `allowed_children_cache` text[0m
|
|
195
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211095')[0m
|
|
196
|
+
Migrating to ExtendPagePartContentLimit (20260420211096)
|
|
197
|
+
[1m[35m (8.3ms)[0m [1m[35mALTER TABLE `page_parts` CHANGE `content` `content` mediumtext DEFAULT NULL[0m
|
|
198
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211096')[0m
|
|
199
|
+
Migrating to ChangePagesAllowedChildrenCacheToText (20260420211097)
|
|
200
|
+
[1m[35m (2.1ms)[0m [1m[35mALTER TABLE `pages` CHANGE `allowed_children_cache` `allowed_children_cache` text DEFAULT NULL[0m
|
|
201
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211097')[0m
|
|
202
|
+
Migrating to AddPasswordResetToUsers (20260420211098)
|
|
203
|
+
[1m[35m (6.4ms)[0m [1m[35mALTER TABLE `users` ADD `password_reset_token` varchar(255)[0m
|
|
204
|
+
[1m[35m (4.7ms)[0m [1m[35mALTER TABLE `users` ADD `password_reset_sent_at` datetime[0m
|
|
205
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211098')[0m
|
|
206
|
+
Migrating to AddPositionToPages (20260420211099)
|
|
207
|
+
[1m[35m (12.0ms)[0m [1m[35mALTER TABLE `pages` ADD `position` int[0m
|
|
208
|
+
[1m[36mPage Load (0.3ms)[0m [1m[34mSELECT `pages`.* FROM `pages` WHERE `pages`.`parent_id` IS NULL[0m
|
|
209
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211099')[0m
|
|
210
|
+
Migrating to CreateAdminUsers (20260420211100)
|
|
211
|
+
[1m[35m (6.9ms)[0m [1m[35mCREATE TABLE `admins` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `email` varchar(255) DEFAULT '' NOT NULL, `encrypted_password` varchar(255) DEFAULT '' NOT NULL, `reset_password_token` varchar(255), `reset_password_sent_at` datetime, `remember_created_at` datetime, `sign_in_count` int DEFAULT 0 NOT NULL, `current_sign_in_at` datetime, `last_sign_in_at` datetime, `current_sign_in_ip` varchar(255), `last_sign_in_ip` varchar(255), `confirmation_token` varchar(255), `confirmed_at` datetime, `confirmation_sent_at` datetime, `unconfirmed_email` varchar(255), `failed_attempts` int DEFAULT 0 NOT NULL, `unlock_token` varchar(255), `locked_at` datetime, `first_name` varchar(255), `last_name` varchar(255), `admin` tinyint(1), `designer` tinyint(1), `content_editor` tinyint(1), `site_id` int, `updated_by_id` int, `notes` text, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL)[0m
|
|
212
|
+
[1m[36mActiveRecord::SchemaMigration Create (1.4ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211100')[0m
|
|
213
|
+
Migrating to CreateActiveStorageTables (20260420211101)
|
|
214
|
+
[1m[35m (6.7ms)[0m [1m[35mCREATE TABLE `active_storage_blobs` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `key` varchar(255) NOT NULL, `filename` varchar(255) NOT NULL, `content_type` varchar(255), `metadata` text, `service_name` varchar(255) NOT NULL, `byte_size` bigint NOT NULL, `checksum` varchar(255) NOT NULL, `created_at` datetime NOT NULL, UNIQUE INDEX `index_active_storage_blobs_on_key` (`key`))[0m
|
|
215
|
+
[1m[35m (3.9ms)[0m [1m[35mCREATE TABLE `active_storage_attachments` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(255) NOT NULL, `record_type` varchar(255) NOT NULL, `record_id` bigint NOT NULL, `blob_id` bigint NOT NULL, `created_at` datetime NOT NULL, INDEX `index_active_storage_attachments_on_blob_id` (`blob_id`), UNIQUE INDEX `index_active_storage_attachments_uniqueness` (`record_type`, `record_id`, `name`, `blob_id`), CONSTRAINT `fk_rails_c3b3935057`
|
|
216
|
+
FOREIGN KEY (`blob_id`)
|
|
217
|
+
REFERENCES `active_storage_blobs` (`id`)
|
|
218
|
+
)[0m
|
|
219
|
+
[1m[35m (4.0ms)[0m [1m[35mCREATE TABLE `active_storage_variant_records` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `blob_id` bigint NOT NULL, `variation_digest` varchar(255) NOT NULL, UNIQUE INDEX `index_active_storage_variant_records_uniqueness` (`blob_id`, `variation_digest`), CONSTRAINT `fk_rails_993965df05`
|
|
220
|
+
FOREIGN KEY (`blob_id`)
|
|
221
|
+
REFERENCES `active_storage_blobs` (`id`)
|
|
222
|
+
)[0m
|
|
223
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211101')[0m
|
|
224
|
+
Migrating to CreateSiteUsers (20260420211102)
|
|
225
|
+
[1m[35m (4.7ms)[0m [1m[35mCREATE TABLE `admins_sites` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `admin_id` int NOT NULL, `site_id` int NOT NULL, INDEX `index_admins_sites_on_admin_id` (`admin_id`), INDEX `index_admins_sites_on_site_id` (`site_id`))[0m
|
|
226
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.7ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211102')[0m
|
|
227
|
+
Migrating to CreateVersions (20260420211103)
|
|
228
|
+
[1m[35m (4.8ms)[0m [1m[35mCREATE TABLE `versions` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `whodunnit` varchar(255), `created_at` datetime(6), `item_id` bigint NOT NULL, `item_type` varchar(191) NOT NULL, `event` varchar(255) NOT NULL, `object` longtext) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci[0m
|
|
229
|
+
[1m[35m (6.0ms)[0m [1m[35mCREATE INDEX `index_versions_on_item_type_and_item_id` ON `versions` (`item_type`, `item_id`)[0m
|
|
230
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211103')[0m
|
|
231
|
+
Migrating to CreateVersionAssociations (20260420211104)
|
|
232
|
+
[1m[35m (4.2ms)[0m [1m[35mCREATE TABLE `version_associations` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `version_id` int, `foreign_key_name` varchar(255) NOT NULL, `foreign_key_id` int, `foreign_type` varchar(255))[0m
|
|
233
|
+
[1m[35m (5.4ms)[0m [1m[35mCREATE INDEX `index_version_associations_on_version_id` ON `version_associations` (`version_id`)[0m
|
|
234
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE INDEX `index_version_associations_on_foreign_key` ON `version_associations` (`foreign_key_name`, `foreign_key_id`, `foreign_type`)[0m
|
|
235
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211104')[0m
|
|
236
|
+
Migrating to AddTransactionIdColumnToVersions (20260420211105)
|
|
237
|
+
[1m[35m (7.6ms)[0m [1m[35mALTER TABLE `versions` ADD `transaction_id` int[0m
|
|
238
|
+
[1m[35m (2.4ms)[0m [1m[35mCREATE INDEX `index_versions_on_transaction_id` ON `versions` (`transaction_id`)[0m
|
|
239
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211105')[0m
|
|
240
|
+
Migrating to AddDeviseTwoFactorToAdmins (20260420211106)
|
|
241
|
+
[1m[35m (6.8ms)[0m [1m[35mALTER TABLE `admins` ADD `otp_secret` varchar(255)[0m
|
|
242
|
+
[1m[35m (5.8ms)[0m [1m[35mALTER TABLE `admins` ADD `consumed_timestep` int[0m
|
|
243
|
+
[1m[35m (13.6ms)[0m [1m[35mALTER TABLE `admins` ADD `otp_required_for_login` tinyint(1)[0m
|
|
244
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211106')[0m
|
|
245
|
+
Migrating to AddObjectChangesToVersions (20260420211107)
|
|
246
|
+
[1m[35m (7.7ms)[0m [1m[35mALTER TABLE `versions` ADD `object_changes` longtext[0m
|
|
247
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20260420211107')[0m
|
|
248
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT RELEASE_LOCK('6658685849647950510')[0m
|
|
249
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m
|
|
250
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'admin.title' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
251
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
252
|
+
[1m[36mTrustyCms::Config Create (2.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('admin.title', 'TrustyCms CMS')[0m
|
|
253
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
254
|
+
[1m[36mTRANSACTION (7.1ms)[0m [1m[35mCOMMIT[0m
|
|
255
|
+
[1m[36mTrustyCms::Config Load (0.3ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'defaults.page.parts' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
256
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
257
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('defaults.page.parts', 'Body,Extended')[0m
|
|
258
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
259
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
260
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'defaults.page.status' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
261
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
262
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('defaults.page.status', 'Draft')[0m
|
|
263
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
264
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
265
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'pagination.param_name' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
266
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
267
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('pagination.param_name', 'page')[0m
|
|
268
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
269
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
270
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'pagination.per_page_param_name' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
271
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
272
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('pagination.per_page_param_name', 'per_page')[0m
|
|
273
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
274
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
275
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'admin.pagination.per_page' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
276
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
277
|
+
[1m[36mTrustyCms::Config Create (0.4ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('admin.pagination.per_page', '50')[0m
|
|
278
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
279
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
280
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'site.title' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
281
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
282
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('site.title', 'Your site title')[0m
|
|
283
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
284
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mCOMMIT[0m
|
|
285
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'site.host' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
286
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
287
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('site.host', 'www.example.com')[0m
|
|
288
|
+
[1m[36mTrustyCms::Config Load (0.0ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
289
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
290
|
+
[1m[36mTrustyCms::Config Load (0.2ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'session_timeout' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
291
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mBEGIN[0m
|
|
292
|
+
[1m[36mTrustyCms::Config Create (0.5ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('session_timeout', '1209600')[0m
|
|
293
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
294
|
+
[1m[36mTRANSACTION (1.3ms)[0m [1m[35mCOMMIT[0m
|
|
295
|
+
[1m[36mTrustyCms::Config Load (1.2ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.create_image_thumbnails?' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
296
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
|
297
|
+
[1m[36mTrustyCms::Config Create (1.2ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.create_image_thumbnails?', 'true')[0m
|
|
298
|
+
[1m[36mTrustyCms::Config Load (5.6ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
299
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
300
|
+
[1m[36mTrustyCms::Config Load (0.2ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.create_video_thumbnails?' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
301
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mBEGIN[0m
|
|
302
|
+
[1m[36mTrustyCms::Config Create (0.6ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.create_video_thumbnails?', 'true')[0m
|
|
303
|
+
[1m[36mTrustyCms::Config Load (0.2ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
304
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
|
305
|
+
[1m[36mTrustyCms::Config Load (0.5ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.create_pdf_thumbnails?' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
306
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
307
|
+
[1m[36mTrustyCms::Config Create (0.2ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.create_pdf_thumbnails?', 'true')[0m
|
|
308
|
+
[1m[36mTrustyCms::Config Load (0.3ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
309
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
|
310
|
+
[1m[36mTrustyCms::Config Load (0.5ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.thumbnails.image' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
311
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mBEGIN[0m
|
|
312
|
+
[1m[36mTrustyCms::Config Create (0.2ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.thumbnails.image', 'normal:size=640x640>|small:size=320x320>')[0m
|
|
313
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
314
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
|
315
|
+
[1m[36mTrustyCms::Config Load (0.2ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.thumbnails.video' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
316
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
317
|
+
[1m[36mTrustyCms::Config Create (0.2ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.thumbnails.video', 'normal:size=640x640>,format=jpg|small:size=320x320>,format=jpg')[0m
|
|
318
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
319
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
320
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.thumbnails.pdf' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
321
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mBEGIN[0m
|
|
322
|
+
[1m[36mTrustyCms::Config Create (0.2ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.thumbnails.pdf', 'normal:size=640x640>,format=jpg|small:size=320x320>,format=jpg')[0m
|
|
323
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
324
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mCOMMIT[0m
|
|
325
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.max_asset_size' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
326
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
327
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.max_asset_size', '10')[0m
|
|
328
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
329
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mCOMMIT[0m
|
|
330
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.max_video_size' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
331
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
332
|
+
[1m[36mTrustyCms::Config Create (0.2ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.max_video_size', '50')[0m
|
|
333
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
334
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mCOMMIT[0m
|
|
335
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.display_size' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
336
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
337
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.display_size', 'normal')[0m
|
|
338
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
339
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mCOMMIT[0m
|
|
340
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config` WHERE `config`.`key` = 'assets.insertion_size' ORDER BY `config`.`id` ASC LIMIT 1[0m
|
|
341
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[35mBEGIN[0m
|
|
342
|
+
[1m[36mTrustyCms::Config Create (0.1ms)[0m [1m[32mINSERT INTO `config` (`key`, `value`) VALUES ('assets.insertion_size', 'normal')[0m
|
|
343
|
+
[1m[36mTrustyCms::Config Load (0.1ms)[0m [1m[34mSELECT `config`.* FROM `config`[0m
|
|
344
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
345
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT DISTINCT class_name FROM pages WHERE class_name <> '' AND class_name IS NOT NULL[0m
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1d9926ca1af1965414a2c8a3b0c301bcf1d26894000d2b3cc6a7b1c66edee3f4c759b8f792fdb3b3a8353464b39f53bfea2df3ea609a895b925602442d84a58a
|
|
File without changes
|