File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 10
10
#
11
11
# It's strongly recommended that you check this file into your version control system.
12
12
13
- ActiveRecord ::Schema [ 7.0 ] . define ( version : 2023_12_21_234141 ) do
13
+ ActiveRecord ::Schema [ 7.0 ] . define ( version : 2024_01_03_204520 ) do
14
14
# These are extensions that must be enabled in order to support this database
15
15
enable_extension "pgcrypto"
16
16
enable_extension "plpgsql"
211
211
t . integer "months" , default : 1
212
212
end
213
213
214
+ create_table "items" , force : :cascade do |t |
215
+ t . string "sku"
216
+ t . integer "unity"
217
+ t . integer "quantity"
218
+ t . decimal "discount"
219
+ t . decimal "value"
220
+ t . decimal "ipi_tax"
221
+ t . string "description"
222
+ t . string "long_description"
223
+ t . bigint "product_id"
224
+ t . integer "account_id"
225
+ t . bigint "bling_order_item_id"
226
+ t . datetime "created_at" , null : false
227
+ t . datetime "updated_at" , null : false
228
+ end
229
+
214
230
create_table "post_data" , force : :cascade do |t |
215
231
t . string "client_name"
216
232
t . string "cep"
You can’t perform that action at this time.
0 commit comments