about summary refs log tree commit diff stats
path: root/data/maps/the_symbolic/rooms/White Room.txtpb
blob: 808588e4e321c8d8e6afecba2665dfbe4fd0e529 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
name: "White Room"
panels {
  name: "WRITE"
  path: "Panels/Prequel/panel_1"
  clue: "write"
  answer: "write"
}
ports {
  name: "PLAZA"
  path: "Components/Warps/worldport"
}
Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
class CreateCkeditorAssets < ActiveRecord::Migration[5.1]
  def self.up
    create_table :ckeditor_assets do |t|
      t.string  :data_file_name, null: false
      t.string  :data_content_type
      t.integer :data_file_size
      t.string  :data_fingerprint
      t.string  :type, limit: 30

      # Uncomment	it to save images dimensions, if your need it
      t.integer :width
      t.integer :height

      t.timestamps null: false
    end

    add_index :ckeditor_assets, :type
  end

  def self.down
    drop_table :ckeditor_assets
  end
end