OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/db/migrate/20140113132617_create_taskb...

11 lines
270 B

class CreateTaskboardCardConfiguration < ActiveRecord::Migration
def change
create_table :taskboard_card_configurations do |t|
t.string :identifier
t.string :name
t.text :rows
t.integer :per_page
t.string :page_size
end
end
end