mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 08:54:23 -05:00
14 lines
195 B
Ruby
14 lines
195 B
Ruby
class CreateCustomerTokens < ActiveRecord::Migration
|
|
def change
|
|
create_table :customer_tokens do |t|
|
|
|
|
t.string :token
|
|
|
|
t.timestamp :expires_at
|
|
|
|
|
|
end
|
|
|
|
end
|
|
end
|