Sha256: 0ff9fd6d56e352e01d8bfe65c13cb1113531981c987940a3ce2613a9674b6331
Contents?: true
Size: 471 Bytes
Versions: 2
Compression:
Stored size: 471 Bytes
Contents
class CreateSlimtimerTasks < ActiveRecord::Migration def self.up create_table :slimtimer_tasks do |t| # Owner id: t.column :owner_employee_slimtimer_id, :integer t.column :name, :string t.column :default_client_id, :integer t.column :st_created_at, :timestamp t.column :st_updated_at, :timestamp t.timestamps end end def self.down drop_table :slimtimer_tasks end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
brisk-bills-0.8.2 | db/migrate/003_create_slimtimer_tasks.rb |
brisk-bills-0.8.1 | db/migrate/003_create_slimtimer_tasks.rb |