mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
7 lines
143 B
Ruby
7 lines
143 B
Ruby
class CreateInvoices < ActiveRecord::Migration
|
|
def change
|
|
create_table :invoices do |t|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|